mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
10 lines
248 B
JavaScript
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;
|
|
}));
|
|
}
|
|
}
|