summaryrefslogtreecommitdiff
path: root/classes/rssutils.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-01-25 22:33:13 +0300
committerAndrew Dolgov <[email protected]>2022-01-25 22:33:13 +0300
commitc57ebf2c10e2458d5cecc9c38a7ab168d6934ec5 (patch)
tree7218eb868a95a4b4fde695084534ebb1b07ae1aa /classes/rssutils.php
parent56fd06d611d7bd4896f886f3e20ac778f47771cb (diff)
fix filter last_triggered not updating
Diffstat (limited to 'classes/rssutils.php')
-rwxr-xr-xclasses/rssutils.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/rssutils.php b/classes/rssutils.php
index 8af544a12..6f1d52c05 100755
--- a/classes/rssutils.php
+++ b/classes/rssutils.php
@@ -847,7 +847,8 @@ class RSSUtils {
if (count($matched_filter_ids) > 0) {
$filter_objs = ORM::for_table('ttrss_filters2')
->where('owner_uid', $feed_obj->owner_uid)
- ->where_in('id', $matched_filter_ids);
+ ->where_in('id', $matched_filter_ids)
+ ->find_many();
foreach ($filter_objs as $filter_obj) {
$filter_obj->set('last_triggered', Db::NOW());