Skip to content

Commit

Permalink
Skip year from artist
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Mar 17, 2024
1 parent fdd8650 commit 75d8e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plextraktsync/plex/PlexLibraryItem.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def title(self):
if self.type == "episode":
value = f"{self.item.grandparentTitle}/{self.item.seasonEpisode}/{value}"

if self.item.year:
if self.type != "artist" and self.item.year:
value = f"{value} ({self.item.year})"

return value
Expand Down

0 comments on commit 75d8e97

Please sign in to comment.