mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[50] #841 fix poster_path error
This commit is contained in:
parent
148d2187af
commit
c40b6e418f
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.16.5-develop49
|
||||
1.16.5-develop50
|
||||
|
|
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue