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

Fix serverId in item details download request

Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
Niels van Velzen 2022-07-27 08:59:47 +02:00 committed by GitHub
parent 5489f34b92
commit 7936502047
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1966,7 +1966,7 @@ export default function (view, params) {
download([{ download([{
url: downloadHref, url: downloadHref,
itemId: currentItem.Id, itemId: currentItem.Id,
serverId: currentItem.serverId, serverId: currentItem.ServerId,
title: currentItem.Name, title: currentItem.Name,
filename: currentItem.Path.replace(/^.*[\\/]/, '') filename: currentItem.Path.replace(/^.*[\\/]/, '')
}]); }]);