mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-09 11:42:16 +00:00
merge identical genre tags in album info
This commit is contained in:
parent
e6e20d1669
commit
a1eeeb8ba9
@ -240,7 +240,7 @@ class Album(db.Entity):
|
||||
if count(self.tracks.year) > 0:
|
||||
info["year"] = min(self.tracks.year)
|
||||
|
||||
genre = ", ".join(self.tracks.genre)
|
||||
genre = ", ".join(list(set(self.tracks.genre)))
|
||||
if genre:
|
||||
info["genre"] = genre
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user