0.3.22 - PINs

This commit is contained in:
ponzischeme89
2026-08-25 11:39:55 +12:00
parent 396d35e2f5
commit 0fcc02f57e
2697 changed files with 5360 additions and 50 deletions
+7 -4
View File
@@ -395,10 +395,13 @@ func (s *Server) handleNextEpisode(w http.ResponseWriter, r *http.Request, sess
}
episodes, err := s.emby.Episodes(ctx, cred, seriesID, url.Values{
"AdjacentTo": {itemID},
"Fields": {"RunTimeTicks,Overview,SeriesName"},
"EnableUserData": {"true"},
"EnableImageTypes": {"Primary,Thumb"},
"AdjacentTo": {itemID},
"Fields": {"RunTimeTicks,Overview,SeriesName"},
"EnableUserData": {"true"},
// Logo alongside the row's own artwork, or the next-up banner has nothing to
// draw a title treatment from — Emby folds the series' logo into an episode's
// ParentLogoItemId/ParentLogoImageTag only for image types this request asks for.
"EnableImageTypes": {"Primary,Thumb,Logo"},
})
if err != nil {
s.writeUpstreamError(ctx, w, err, "could not load the next episode")