From 3fbeb044ee20e767ee313ff3400bb397d14fd5c6 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sun, 14 Dec 2025 12:24:22 +0100 Subject: [PATCH] right --- modules/jingle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jingle.py b/modules/jingle.py index 7b8c5e2..c3d4d71 100644 --- a/modules/jingle.py +++ b/modules/jingle.py @@ -48,7 +48,7 @@ class Module2(PlayerModule): if broadcast: return jingle = self.primary if self.secondary and (random.randint(1,3) == 1): jingle = random.choice(self.secondary) - return self._imc.send(self, "activemod", {"action": "add_to_toplay", "songs": [jingle]}) + return self._imc.send(self, "activemod", {"action": "add_to_toplay", "songs": [f"!{jingle}"]}) options = Path("/home/user/Jingiel.mp3"), [Path("/home/user/jing2.opus"), Path("Jing3.opus")] module = Module2(*options)