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

Use downloadFiles from NatvieShell

Try to pass batched downloads to natvie shell as list
The new downloadFiles function is TBD in shell implementations.
This commit is contained in:
Markus Ongyerth 2022-10-12 07:15:09 +02:00 committed by Bill Thornton
parent 9bef06f466
commit e834ae3f41

View file

@ -42,6 +42,10 @@ export default {
* @returns true on success
*/
downloadFiles(items) {
if (window.NativeShell?.downloadFiles) {
window.NativeShell.downloadFiles(items);
return true;
}
if (window.NativeShell?.downloadFile) {
items.forEach(item => {
window.NativeShell.downloadFile(item);