mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[58] fix tvdb_show_details summary
This commit is contained in:
parent
265c2b8294
commit
14abfe2806
2 changed files with 3 additions and 1 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.20.0-develop57
|
||||
1.20.0-develop58
|
||||
|
|
|
@ -2123,6 +2123,8 @@ class CollectionBuilder:
|
|||
if method_name.endswith("_details"):
|
||||
if method_name.startswith(("tvdb_movie", "tvdb_show")):
|
||||
item = self.config.TVDb.get_tvdb_obj(values[0], is_movie=method_name.startswith("tvdb_movie"))
|
||||
if item.summary:
|
||||
self.summaries[method_name] = item.summary
|
||||
if item.background_url:
|
||||
self.backgrounds[method_name] = item.background_url
|
||||
if item.poster_url:
|
||||
|
|
Loading…
Reference in a new issue