From b5abbf77097e40bf3d61a2d418c7550cd71f121c Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Wed, 15 Apr 2026 20:01:22 +0200 Subject: [PATCH] whoops --- modules/rds.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/rds.py b/modules/rds.py index 8b4fba2..ee55253 100644 --- a/modules/rds.py +++ b/modules/rds.py @@ -86,7 +86,9 @@ class Module(PlayerModule): self._imc.send(self, "web", {"rt": rds_rt, "rtp": rds_rtp}, False) logger.info(f"RT set to '{rds_rt}'") logger.debug(f"{rds_rtp=}") - def imc(self, imc: InterModuleCommunication) -> None: imc.register(self, "rds") + def imc(self, imc: InterModuleCommunication) -> None: + self._imc = imc + imc.register(self, "rds") module = Module()