From 6b860bd9d25ef69daded8435f7991d64974b6cc1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 13 Sep 2015 15:59:21 +0300 Subject: [PATCH] recently read: limit query by last_read --- include/functions2.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/functions2.php b/include/functions2.php index a135049a..fb8a6a3d 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -608,9 +608,9 @@ $query_strategy_part = "unread = false AND last_read IS NOT NULL"; if (DB_TYPE == "pgsql") { - $query_strategy_part .= " AND date_entered > NOW() - INTERVAL '1 DAY' "; + $query_strategy_part .= " AND last_read > NOW() - INTERVAL '1 DAY' "; } else { - $query_strategy_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL 1 DAY) "; + $query_strategy_part .= " AND last_read > DATE_SUB(NOW(), INTERVAL 1 DAY) "; } $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; -- 2.39.2