ui: fix RuntimeError on exit on PC

pull/36536/head
Adeeb Shihadeh 7 days ago
parent ecdcb5d0c6
commit cbc8f98682
  1. 2
      system/ui/lib/wifi_manager.py

@ -746,7 +746,9 @@ class WifiManager:
def stop(self):
if not self._exit:
self._exit = True
if self._scan_thread.is_alive():
self._scan_thread.join()
if self._state_thread.is_alive():
self._state_thread.join()
self._router_main.close()

Loading…
Cancel
Save