fix: [feed:filterEventIndex] Correctly filter out events based on the tag's filter rule

pull/8271/head
Sami Mokaddem 2022-04-04 11:56:55 +02:00
parent 6c258015a1
commit 077b43c33e
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 2 additions and 2 deletions

View File

@ -813,7 +813,7 @@ class Feed extends AppModel
}
}
if (!$found) {
unset($k);
unset($events[$k]);
continue;
}
}
@ -828,7 +828,7 @@ class Feed extends AppModel
}
}
if ($found) {
unset($k);
unset($events[$k]);
}
}
}