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

Merge pull request #1657 from dmitrylyzo/fix-download

Fix file download
This commit is contained in:
dkanada 2020-07-27 20:11:49 +09:00 committed by GitHub
commit 6bcb01d477
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -352,7 +352,7 @@ import actionsheet from 'actionsheet';
});
break;
case 'download':
import('fileDownloader').then(({default: fileDownloader}) => {
import('fileDownloader').then((fileDownloader) => {
const downloadHref = apiClient.getItemDownloadUrl(itemId);
fileDownloader.download([{
url: downloadHref,