Skip to content

Commit 55eeec5

Browse files
committed
Fixed:
- Now we can upload using Custom HTTP Handler
1 parent 4bfeb6b commit 55eeec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export default class DiffZipBackupPlugin extends Plugin {
195195
await client.putObject({
196196
Bucket: this.settings.bucket,
197197
Key: fullPath,
198-
Body: new Blob([data], { type: "application/octet-stream" }),
198+
Body: new Uint8Array(data),
199199
});
200200
}
201201
async readBinaryS3(fullPath: string) {

0 commit comments

Comments
 (0)