turn off merging albums

This commit is contained in:
geoffrey45
2023-05-09 15:24:10 +03:00
parent 8e59a59ba2
commit a201303bd9
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -178,7 +178,6 @@ def get_all_favorites():
tracks = UseBisection(src_tracks, "trackhash", tracks)()
albums = UseBisection(src_albums, "albumhash", albums, limit=album_limit)()
print(albums)
artists = UseBisection(src_artists, "artisthash", artists)()
tracks = remove_none(tracks)
+1 -1
View File
@@ -162,7 +162,7 @@ class FromFlags:
DO_PERIODIC_SCANS = True
PERIODIC_SCAN_INTERVAL = 300 # seconds
MERGE_ALBUM_VERSIONS = True
MERGE_ALBUM_VERSIONS = False
class ParserFlags(Enum):