fix(media): 修复剧集单集图片刮削

This commit is contained in:
Attente
2026-03-23 19:41:48 +08:00
parent 9620a06552
commit a0838ed9cd
2 changed files with 10 additions and 4 deletions

View File

@@ -87,7 +87,7 @@ class TmdbScraper:
episodeinfo = self.__get_episode_detail(seasoninfo, episode)
if still_path := episodeinfo.get("still_path"):
# TMDB集still图片
still_name = f"{episode}"
still_name = f"episode-thumb-{episode}"
still_url = settings.TMDB_IMAGE_URL(still_path)
images[still_name] = still_url
else: