diff --git a/src/remoteForOnedrive.ts b/src/remoteForOnedrive.ts index 0e909f5..c55110b 100644 --- a/src/remoteForOnedrive.ts +++ b/src/remoteForOnedrive.ts @@ -821,9 +821,7 @@ const downloadFromRemoteRaw = async ( return content; } else { const content = await // cannot set no-cache here, will have cors error - ( - await fetch(downloadUrl) - ).arrayBuffer(); + (await fetch(downloadUrl)).arrayBuffer(); return content; } };