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
2020-11-05 22:58:26 +00:00

10 lines
248 B
JavaScript

import multiDownload from './multiDownload';
import shell from './shell';
export function download(items) {
if (!shell.downloadFiles(items)) {
multiDownload(items.map(function (item) {
return item.url;
}));
}
}