Merge pull request #7331 from theguymadmax/fix-trickplays-on-playlists

Fix trickplay not displaying when content is played from a playlist
This commit is contained in:
Bill Thornton
2025-11-17 12:11:50 -05:00
committed by GitHub

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()
};