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

fixed multiple default imports missing

Co-authored-by: Dmitry Lyzo <56478732+dmitrylyzo@users.noreply.github.com>
This commit is contained in:
vitorsemeano 2020-11-08 19:39:03 +00:00 committed by GitHub
parent 5b5d6a45b0
commit 0da8f4eb85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -1958,7 +1958,7 @@ export default function (view, params) {
}
function onDownloadClick() {
import('../../scripts/fileDownloader').then(({ default: fileDownloader }) => {
import('../../scripts/fileDownloader').then((fileDownloader) => {
const downloadHref = getApiClient().getItemDownloadUrl(currentItem.Id);
fileDownloader.download([{
url: downloadHref,