This commit is contained in:
nathom 2021-07-24 11:00:26 -07:00
parent 5ab0fdbc4a
commit 482f398e44

View file

@ -264,9 +264,9 @@ class TrackMetadata:
:param work:
:type work: str
"""
if version is not None:
if version is not None and version not in self.title:
self.title = f"{self.title} ({version})"
if work is not None:
if work is not None and work not in self.title:
logger.debug("Work found: %s", work)
self.title = f"{work}: {self.title}"