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

@ -379,6 +379,7 @@ class DownloadChain(ChainBase):
__append_no_exists(season, episodes)
# 存在不完整的剧集
if no_exists:
logger.info(f"媒体库中已存在部分剧集,缺失:{no_exists}")
return False, no_exists
# 全部存在
return True, no_exists

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):