mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +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")
|
||||
|
||||
# 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)
|
||||
continue
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user