Compare commits

..

1 Commits

Author SHA1 Message Date
Lance Chant
360066cdde 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>
2026-06-13 12:19:17 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ jobs:
fetch-depth: 0
- name: 🌐 Sync Translations with Crowdin
uses: crowdin/github-action@52aa776766211d83d975df51f3b9c53c2f8ba35f # v2.16.3
uses: crowdin/github-action@8868a33591d21088edfc398968173a3b98d51706 # v2.16.2
with:
upload_sources: true
upload_translations: true

View File

@@ -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) {