From e7219c57703b1220a9f13f411880fc44349bb944 Mon Sep 17 00:00:00 2001 From: Kuba <132459354+KubaPro010@users.noreply.github.com> Date: Sat, 11 Oct 2025 17:02:25 +0200 Subject: [PATCH] fix rds --- modules/rds.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/rds.py b/modules/rds.py index d23bfeb..84e7071 100644 --- a/modules/rds.py +++ b/modules/rds.py @@ -75,4 +75,6 @@ class Module(PlayerModule): def on_new_track(self, index: int, track: str, to_fade_in: bool, to_fade_out: bool, official: bool): if official: rds_rt, rds_rtp = update_rds(os.path.basename(track)) - logger.info(f"RT set to '{rds_rt}' (RTP: {rds_rtp})") \ No newline at end of file + logger.info(f"RT set to '{rds_rt}' (RTP: {rds_rtp})") + +module = Module() \ No newline at end of file