[58] fix tvdb_show_details summary

This commit is contained in:
meisnate12 2024-04-03 09:13:28 -04:00
parent 265c2b8294
commit 14abfe2806
2 changed files with 3 additions and 1 deletions

View file

@ -1 +1 @@
1.20.0-develop57 1.20.0-develop58

View file

@ -2123,6 +2123,8 @@ class CollectionBuilder:
if method_name.endswith("_details"): if method_name.endswith("_details"):
if method_name.startswith(("tvdb_movie", "tvdb_show")): if method_name.startswith(("tvdb_movie", "tvdb_show")):
item = self.config.TVDb.get_tvdb_obj(values[0], is_movie=method_name.startswith("tvdb_movie")) 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: if item.background_url:
self.backgrounds[method_name] = item.background_url self.backgrounds[method_name] = item.background_url
if item.poster_url: if item.poster_url: