From 360066cdde3fa34dacf67ca4cac56a3f55d2d521 Mon Sep 17 00:00:00 2001 From: Lance Chant <13349722+lancechant@users.noreply.github.com> Date: Sat, 13 Jun 2026 12:05:46 +0200 Subject: [PATCH] fix: apple top shelf currently cropping images the backdrop url is currently being used, primary is the last resort, so changing image shape should hopefully help Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com> --- targets/StreamyfinTopShelf/TopShelfProvider.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/StreamyfinTopShelf/TopShelfProvider.swift b/targets/StreamyfinTopShelf/TopShelfProvider.swift index ee73685d..c86e7192 100644 --- a/targets/StreamyfinTopShelf/TopShelfProvider.swift +++ b/targets/StreamyfinTopShelf/TopShelfProvider.swift @@ -65,7 +65,7 @@ final class TopShelfProvider: TVTopShelfContentProvider { let item = TVTopShelfSectionedItem(identifier: cacheItem.id) item.title = cacheItem.title - item.imageShape = .poster + item.imageShape = .hdtv item.displayAction = TVTopShelfAction(url: route) if let playRoute = cacheItem.playRoute, let playURL = URL(string: playRoute) {