fix: show albums with a single track as singles

This commit is contained in:
cwilvx
2024-12-31 13:43:13 +03:00
parent df4c911371
commit cbfe37a4ac
+1 -1
View File
@@ -173,7 +173,7 @@ class Album:
# REVIEW: Reading from the config file in a for loop will be slow
# TODO: Find a
if singleTrackAsSingle and len(tracks) == 1:
if singleTrackAsSingle and self.trackcount == 1:
return True
if (