1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
This commit is contained in:
sulphur 2025-03-30 11:01:13 -04:00 committed by GitHub
commit e85b462efd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2141,6 +2141,12 @@ export default function (view, params) {
...currentItem, ...currentItem,
...selectedMediaSource ...selectedMediaSource
}); });
const apiClient = getApiClient();
apiClient.getItem(apiClient.getCurrentUserId(), selectedMediaSource.Id).then(function (item) {
currentItem = item;
});
} }
init(); init();