Backport pull request #7331 from jellyfin-web/release-10.11.z

Fix trickplay not displaying when content is played from a playlist

Original-merge: b807ebfa4a

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
theguymadmax
2025-11-17 12:13:17 -05:00
committed by thornbill
parent a2e9231983
commit 2d7a38c9cc

View File

@@ -7,7 +7,7 @@ import { toApi } from 'utils/jellyfin-apiclient/compat';
function getFetchPlaylistItemsFn(apiClient, itemId) {
return function () {
const query = {
Fields: 'PrimaryImageAspectRatio',
Fields: 'PrimaryImageAspectRatio,MediaSourceCount,Chapters,Trickplay',
EnableImageTypes: 'Primary,Backdrop,Banner,Thumb',
UserId: apiClient.getCurrentUserId()
};