From 14abfe28063b1428f3929530601bc4a6256481d3 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 3 Apr 2024 09:13:28 -0400 Subject: [PATCH] [58] fix tvdb_show_details summary --- VERSION | 2 +- modules/builder.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9b7729ef3..4d392f5f4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.20.0-develop57 +1.20.0-develop58 diff --git a/modules/builder.py b/modules/builder.py index 90787b53f..7ce753073 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -2123,6 +2123,8 @@ def _tvdb(self, method_name, method_data): 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: