From 6628e6b78bc0fedeeb4cc48fc94b552553670036 Mon Sep 17 00:00:00 2001 From: KubaPro010 <132459354+KubaPro010@users.noreply.github.com> Date: Fri, 7 Nov 2025 21:04:48 +0100 Subject: [PATCH] set next track properly --- modules/active_modifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/active_modifier.py b/modules/active_modifier.py index 3213f7b..9aed5ba 100644 --- a/modules/active_modifier.py +++ b/modules/active_modifier.py @@ -65,11 +65,11 @@ class Module(ActiveModifier): next_track = Track(new_song, new_official if len(songs) else next_track_to_fade_in, new_official, new_official, {}) else: self.last_track = Track(song, next_track_to_fade_in, last_track_to_fade_out, official, {}) + next_track = track return (self.last_track, next_track), True elif len(self.originals): self.last_track = self.originals.pop(0) if len(self.originals): next_track = self.originals[0] - else: next_track = track else: self.last_track = track if self.limit_tracks: