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

11 lines
248 B
JavaScript
Raw Normal View History

2020-08-14 08:46:34 +02:00
import multiDownload from './multiDownload';
import shell from './shell';
2020-03-19 21:20:47 -04:00
export function download(items) {
if (!shell.downloadFiles(items)) {
2020-03-19 21:20:47 -04:00
multiDownload(items.map(function (item) {
return item.url;
}));
}
}