fix: [event fetcher] pop the tag filter after the first round of lookups

- no need to add the - in effect same - condition twice. The set_tag_filters() function already returns the conditions on multiple hierarchical levels
pull/9764/head
iglocska 2024-06-04 15:13:29 +02:00
parent 5c80a22f1f
commit d4bcd36904
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 1 additions and 1 deletions

View File

@ -1532,7 +1532,7 @@ class Event extends AppModel
'eventid' => array('function' => 'set_filter_eventid', 'pop' => true),
'eventinfo' => array('function' => 'set_filter_eventinfo'),
'ignore' => array('function' => 'set_filter_ignore'),
'tags' => array('function' => 'set_filter_tags'),
'tags' => array('function' => 'set_filter_tags', 'pop' => true),
'event_tags' => array('function' => 'set_filter_tags', 'pop' => true),
'from' => array('function' => 'set_filter_timestamp', 'pop' => true),
'to' => array('function' => 'set_filter_timestamp', 'pop' => true),