diff --git a/web/apps/photos/src/services/download/index.ts b/web/apps/photos/src/services/download/index.ts index fe566700c8..7a2c359329 100644 --- a/web/apps/photos/src/services/download/index.ts +++ b/web/apps/photos/src/services/download/index.ts @@ -617,7 +617,7 @@ async function getPlayableVideo( new File([videoBlob], videoNameTitle), ); log.info(`video successfully converted ${videoNameTitle}`); - return new Blob([await mp4ConvertedVideo.arrayBuffer()]); + return new Blob([mp4ConvertedVideo]); } } catch (e) { log.error("video conversion failed", e);