mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-06 11:15:21 +03:00
Fix case where camera is disabled but autotrack is enabled
This commit is contained in:
parent
c743dfd657
commit
6163e294fc
@ -121,6 +121,9 @@ class PtzAutoTrackerThread(threading.Thread):
|
||||
def run(self):
|
||||
while not self.stop_event.wait(1):
|
||||
for camera_name, cam in self.config.cameras.items():
|
||||
if not cam.enabled:
|
||||
continue
|
||||
|
||||
if cam.onvif.autotracking.enabled:
|
||||
self.ptz_autotracker.camera_maintenance(camera_name)
|
||||
else:
|
||||
@ -153,6 +156,9 @@ class PtzAutoTracker:
|
||||
|
||||
# if cam is set to autotrack, onvif should be set up
|
||||
for camera_name, cam in self.config.cameras.items():
|
||||
if not cam.enabled:
|
||||
continue
|
||||
|
||||
self.autotracker_init[camera_name] = False
|
||||
if cam.onvif.autotracking.enabled:
|
||||
self._autotracker_setup(cam, camera_name)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user