diff --git a/app/core/context.py b/app/core/context.py index 7b47777a..758f3684 100644 --- a/app/core/context.py +++ b/app/core/context.py @@ -473,7 +473,7 @@ class MediaInfo: @property def title_year(self): if self.title: - return "%s (%s)" % (self.title, self.year) if self.year else self.title + return "%s (%s)" % (self.title, self.year) if self.year else self.title return "" @property