From f943d0440306a99767d9635449c0991c541c1176 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 20 Dec 2025 20:21:01 +0100 Subject: [PATCH] wtf --- modules/play_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/play_sort.py b/modules/play_sort.py index ec602a7..c64df93 100644 --- a/modules/play_sort.py +++ b/modules/play_sort.py @@ -51,7 +51,7 @@ class PopularitySorterModule(PlaylistModifierModule): track1 = playlist[i] track2 = playlist[i+1] - if not (track1.official and track2.official): continue + # if not (track1.official and track2.official): continue # Get play counts for both tracks, defaulting to 0 if not found. count1 = play_counts.get(track1.path.as_posix(), 0)