diff --git a/modules/system/ota/ota.py b/modules/system/ota/ota.py index 4ecfa98..52a87ca 100644 --- a/modules/system/ota/ota.py +++ b/modules/system/ota/ota.py @@ -82,7 +82,10 @@ async def connect(self, render_update): return if not wifi.status(): - wifi.connect() + try: + wifi.connect() + except OSError: + pass while True: self.status.value = f"Connecting to {ssid}" await render_update()