recently read: limit query by last_read
This commit is contained in:
parent
dbeef0ca67
commit
6b860bd9d2
1 changed files with 2 additions and 2 deletions
|
@ -608,9 +608,9 @@
|
||||||
$query_strategy_part = "unread = false AND last_read IS NOT NULL";
|
$query_strategy_part = "unread = false AND last_read IS NOT NULL";
|
||||||
|
|
||||||
if (DB_TYPE == "pgsql") {
|
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 {
|
} 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,";
|
$vfeed_query_part = "ttrss_feeds.title AS feed_title,";
|
||||||
|
|
Loading…
Reference in a new issue