Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
1198994985 committed Feb 5, 2024
1 parent 2dfe2ba commit 749b79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mona-clients/mona-client-web/src/apis/upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export async function getDownLoadFileUrl(fileKey: string) {

export async function uploadFileTemporary(file: File) {
if (window.LIGHT_UPLOAD) {
const crc32Res = crc32(await file.arrayBuffer());
const crc32Res = require('./crc32.js').crc32(await file.arrayBuffer());
return window.LIGHT_UPLOAD(file, crc32Res);
}
const domain = window.__MONA_LIGNT_APP_DOMAIN_NAME || 'lgw.jinritemai.com';
Expand Down

0 comments on commit 749b79b

Please sign in to comment.