forked from 77media/video-flow
Merge branch '20251014-fix-video-path' into dev
This commit is contained in:
commit
1f336512d3
@ -80,7 +80,7 @@ export function createScreenAdapter(): void {
|
||||
|
||||
export const downloadVideo = async (url: string) => {
|
||||
try {
|
||||
const response = await fetch(url);
|
||||
const response = await fetch(decodeURIComponent(url));
|
||||
const blob = await response.blob();
|
||||
const blobUrl = window.URL.createObjectURL(blob);
|
||||
const a = document.createElement('a');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user