mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 04:39:58 +00:00
web/remux: download files properly
This commit is contained in:
parent
853bc26587
commit
dd1c630c71
1 changed files with 7 additions and 13 deletions
|
@ -5,9 +5,9 @@
|
|||
import { beforeNavigate } from "$app/navigation";
|
||||
|
||||
import { device } from "$lib/device";
|
||||
import { openURL } from "$lib/download";
|
||||
import { t } from "$lib/i18n/translations";
|
||||
import { createDialog } from "$lib/dialogs";
|
||||
import { downloadFile } from "$lib/download";
|
||||
|
||||
import Skeleton from "$components/misc/Skeleton.svelte";
|
||||
import DropReceiver from "$components/misc/DropReceiver.svelte";
|
||||
|
@ -133,19 +133,13 @@
|
|||
});
|
||||
});
|
||||
|
||||
if (render) {
|
||||
if (device.is.iOS) {
|
||||
return await navigator.share({
|
||||
files: [
|
||||
new File([ render ], file.name, { type: render.type })
|
||||
]
|
||||
}).catch(() => {});
|
||||
if (!render) {
|
||||
return console.log("not a valid file");
|
||||
}
|
||||
|
||||
openURL(URL.createObjectURL(render));
|
||||
} else {
|
||||
console.log("not a valid file");
|
||||
}
|
||||
return await downloadFile({
|
||||
file,
|
||||
})
|
||||
} finally {
|
||||
processing = false;
|
||||
file = undefined;
|
||||
|
|
Loading…
Reference in a new issue