Merge pull request #5611 from wikrin/fix

This commit is contained in:
jxxghp
2026-03-23 19:57:51 +08:00
committed by GitHub
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: