1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

pass title and filename to native shell

This commit is contained in:
dkanada 2020-04-12 23:53:30 +09:00
parent 4fca211b2e
commit 501a8773b8
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,7 @@ export function download(items) {
if (window.NativeShell) {
items.map(function (item) {
window.NativeShell.downloadFile(item.url);
window.NativeShell.downloadFile(item);
});
} else {
multiDownload(items.map(function (item) {