mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-01-21 00:06:44 +01:00
Fix object processing logic for detections (#14766)
This commit is contained in:
parent
9755fa0537
commit
959ca0f412
@ -714,7 +714,8 @@ class TrackedObjectProcessor(threading.Thread):
|
||||
)
|
||||
and (
|
||||
not review_config.detections.required_zones
|
||||
or set(obj.entered_zones) & set(review_config.alerts.required_zones)
|
||||
or set(obj.entered_zones)
|
||||
& set(review_config.detections.required_zones)
|
||||
)
|
||||
)
|
||||
):
|
||||
|
Loading…
Reference in New Issue
Block a user