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

fix casing for a few files

This commit is contained in:
dkanada 2020-05-17 00:52:16 +09:00
parent f45a4d1a8c
commit 200d8dd416
16 changed files with 17 additions and 18 deletions

View file

@ -0,0 +1,14 @@
import multiDownload from 'multi-download';
export function download(items) {
if (window.NativeShell) {
items.map(function (item) {
window.NativeShell.downloadFile(item);
});
} else {
multiDownload(items.map(function (item) {
return item.url;
}));
}
}