Fix case where camera is disabled but autotrack is enabled (#7914)

This commit is contained in:
Nicolas Mowen
2023-09-24 04:05:29 -06:00
committed by GitHub
parent cfd04d164e
commit 08586f8f65

View File

@@ -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)