0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00

actual fix

This commit is contained in:
Kuba
2025-10-13 20:26:00 +02:00
parent ecc3f1a129
commit 4a8f5aae73
2 changed files with 8 additions and 6 deletions

View File

@@ -39,9 +39,9 @@ class Module(ActiveModifier):
logger.info(f"Playing {song} instead, as instructed by toplay")
return (song, last_track_to_fade_out, next_track_to_fade_in, True, {}), True
return song, last_track_to_fade_out, next_track_to_fade_in, True, {}
elif len(self.originals):
return self.originals.pop(0), False
return self.originals.pop(0)
return track
activemod = Module()