diff --git a/selfdrive/manager/manager.py b/selfdrive/manager/manager.py index 9919f78032..7839b2828c 100755 --- a/selfdrive/manager/manager.py +++ b/selfdrive/manager/manager.py @@ -42,7 +42,7 @@ def manager_init(): # is this dashcam? if os.getenv("PASSIVE") is not None: - params.put("Passive", str(int(os.getenv("PASSIVE")))) + params.put_bool("Passive", bool(int(os.getenv("PASSIVE")))) if params.get("Passive") is None: raise Exception("Passive must be set to continue")