From 2d7a38c9cc20a4b2263a26b68052b67723159aea Mon Sep 17 00:00:00 2001 From: theguymadmax <171496228+theguymadmax@users.noreply.github.com> Date: Mon, 17 Nov 2025 12:13:17 -0500 Subject: [PATCH] Backport pull request #7331 from jellyfin-web/release-10.11.z Fix trickplay not displaying when content is played from a playlist Original-merge: b807ebfa4a5fb32fac0da3430722e9997dd7c012 Merged-by: thornbill Backported-by: thornbill --- src/scripts/playlistViewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/playlistViewer.js b/src/scripts/playlistViewer.js index 2bb15930d4..002b210fc8 100644 --- a/src/scripts/playlistViewer.js +++ b/src/scripts/playlistViewer.js @@ -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() };