Skip to content

Commit 68798a8

Browse files
committed
fix: file path double backslash
1 parent 9ad8ddb commit 68798a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/storage/StorageFileApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,6 @@ export class StorageFileApi {
241241
}
242242

243243
_getFinalPath(path: string) {
244-
return `${this.bucketId}\\${path}`
244+
return `${this.bucketId}/${path}`
245245
}
246246
}

0 commit comments

Comments
 (0)