fix(media): fall back to main season poster (#6184)

This commit is contained in:
jxxghp
2026-07-25 07:57:27 +08:00
committed by GitHub
parent f6df6cc093
commit 6354a48405
3 changed files with 5 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ def _build_media_seasons(
episode_count=item.get("episode_count"),
name=item.get("name"),
overview=item.get("overview"),
poster_path=item.get("poster_path"),
poster_path=item.get("poster_path") or mediainfo.poster_path,
season_number=season_number,
vote_average=item.get("vote_average"),
))