From 0e99cb1e10182fadb6bcb178822e4485931777c2 Mon Sep 17 00:00:00 2001 From: Kuba <132459354+KubaPro010@users.noreply.github.com> Date: Sat, 11 Oct 2025 18:10:10 +0200 Subject: [PATCH] jingle correction --- modules/jingle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jingle.py b/modules/jingle.py index ea00ada..55b9dc4 100644 --- a/modules/jingle.py +++ b/modules/jingle.py @@ -25,7 +25,7 @@ class Module(PlaylistModifierModule): for (track, _, _, _, args) in playlist: if not last_jingiel and random.choice([False, True, False, False]) and self.file and int(args.get("no_jingle", 0)) == 0: out.append((track, True, False, True, args)) - out.append((self.file, False, False, False, args)) + out.append((self.file, False, False, False, {})) last_jingiel = True else: out.append((track, True, True, True, args))