fix actor thumb

This commit is contained in:
jxxghp
2023-10-05 17:49:31 -07:00
parent 79c7475435
commit 89854d188d
4 changed files with 12 additions and 3 deletions

View File

@ -345,7 +345,7 @@ class TheMovieDbModule(_ModuleBase):
image_path = seasoninfo.get(image_type.value)
if image_path:
return f"https://image.tmdb.org/t/p/{image_prefix}{image_path}"
return f"https://{settings.TMDB_IMAGE_DOMAIN}/t/p/{image_prefix}{image_path}"
return None
def movie_similar(self, tmdbid: int) -> List[dict]: