diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2023-06-11 05:06:28 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2023-06-11 05:06:28 +0300 |
commit | 3da04de6fd83bca19447a865bf84b3403a14e0c1 (patch) | |
tree | 76dbe9aacb009bcc715d3fc2d6fcfa3a08838ad7 /include/py/homekit | |
parent | 26bd30dff41f5f0e3857283155362a96c47ab9bb (diff) |
ipcam/config: fix schema validation
Diffstat (limited to 'include/py/homekit')
-rw-r--r-- | include/py/homekit/camera/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/py/homekit/camera/config.py b/include/py/homekit/camera/config.py index 331e595..0d4c747 100644 --- a/include/py/homekit/camera/config.py +++ b/include/py/homekit/camera/config.py @@ -65,7 +65,7 @@ class IpcamConfig(ConfigUnit): if 'ext_hdd' not in linux_box: raise ValueError(f'cam-{n}: linux box {cam["server"]} must have ext_hdd defined') disk = cam['disk']-1 - if disk < 0 or disk >= len(linux_box['ext_hdd']): + if disk < 1 or disk >= len(linux_box['ext_hdd']): raise ValueError(f'cam-{n}: invalid disk index for linux box {cam["server"]}') @classmethod |