mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
handle missing camera names
This commit is contained in:
parent
41fea2a531
commit
6ccff71408
@ -78,7 +78,10 @@ class RecordingMaintainer(threading.Thread):
|
|||||||
start_time = datetime.datetime.strptime(date, "%Y%m%d%H%M%S")
|
start_time = datetime.datetime.strptime(date, "%Y%m%d%H%M%S")
|
||||||
|
|
||||||
# Just delete files if recordings are turned off
|
# Just delete files if recordings are turned off
|
||||||
if not self.config.cameras[camera].record.enabled:
|
if (
|
||||||
|
not camera in self.config.cameras
|
||||||
|
or not self.config.cameras[camera].record.enabled
|
||||||
|
):
|
||||||
Path(cache_path).unlink(missing_ok=True)
|
Path(cache_path).unlink(missing_ok=True)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user