From 789a323352b655264d5d644fe95cac562480a7ea Mon Sep 17 00:00:00 2001 From: jxxghp Date: Mon, 14 Aug 2023 19:10:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20context.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/core/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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