diff --git a/selfdrive/loggerd/uploader.py b/selfdrive/loggerd/uploader.py index bc83c83a07..9e3e16102a 100644 --- a/selfdrive/loggerd/uploader.py +++ b/selfdrive/loggerd/uploader.py @@ -71,7 +71,7 @@ def is_on_wifi(): if result is None: return True return 'WIFI' in result - except AttributeError: + except (AttributeError, subprocess.CalledProcessError): return False def is_on_hotspot():