clean album title on tracks too if cleaning is set to true

This commit is contained in:
geoffrey45
2023-05-09 13:54:46 +03:00
parent 740f45b9ac
commit f6dc28f80d
2 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ class AlbumStore:
return Album(
albumhash=track.albumhash,
albumartists=track.albumartist, # type: ignore
title=track.album,
title=track.og_album,
)
@classmethod