[50] #841 fix poster_path error

This commit is contained in:
meisnate12 2022-04-30 17:58:46 -04:00
parent 148d2187af
commit c40b6e418f
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
1.16.5-develop49
1.16.5-develop50

View file

@ -1344,7 +1344,7 @@ class CollectionBuilder:
self.summaries[method_name] = item.overview
if item.backdrop_url:
self.backgrounds[method_name] = item.backdrop_url
if item.poster_path:
if item.poster_url:
self.posters[method_name] = item.poster_url
elif method_name.startswith(("tmdb_actor", "tmdb_crew", "tmdb_director", "tmdb_producer", "tmdb_writer")):
item = self.config.TMDb.get_person(values[0])