added exception to explorer stopping

This commit is contained in:
DJ2LS 2024-01-13 20:43:08 +01:00
parent cce39a161f
commit 8778c17d88

View file

@ -136,7 +136,10 @@ class SM:
def stop_explorer_publishing(self):
if self.config['STATION']['enable_explorer']:
del self.explorer
try:
del self.explorer
except Exception as e:
self.log.info("[EXPLORER] Error while stopping...", e=e)
def start_radio_manager(self):
self.app.radio_manager = radio_manager.RadioManager(self.config, self.state_manager, self.event_manager)