This commit is contained in:
jxxghp
2023-06-09 23:55:33 +08:00
parent 279ad1dab6
commit 4d5a668971
2 changed files with 2 additions and 1 deletions

View File

@ -371,7 +371,7 @@ class MediaInfo(object):
def get_title_string(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 ""
def get_overview_string(self, max_len: int = 140):