0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00
This commit is contained in:
2025-12-13 21:23:29 +01:00
parent b8f4282adc
commit cc7e4ace2c

View File

@@ -240,12 +240,12 @@ class Module(PlayerModule):
self.logger.info("Shutting down...") self.logger.info("Shutting down...")
self.ipc_thread_running = False self.ipc_thread_running = False
try: self.imc_q.put(None) try: self.imc_q.put(None, block=False)
except: pass except: pass
self.shutdown_evt.set() self.shutdown_evt.set()
try: self.ws_q.put(None) try: self.ws_q.put(None, block=False)
except: pass except: pass
self.ipc_thread.join(timeout=2) self.ipc_thread.join(timeout=2)