1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 22:45:57 +00:00

do not apply unread view mode on last read feed because it makes no sense

This commit is contained in:
Andrew Dolgov
2013-03-26 14:47:54 +04:00
parent c4fcffab46
commit 0bf65987b6

View File

@@ -2256,7 +2256,7 @@
$view_query_part = " published = true AND "; $view_query_part = " published = true AND ";
} }
if ($view_mode == "unread") { if ($view_mode == "unread" && $feed != -6) {
$view_query_part = " unread = true AND "; $view_query_part = " unread = true AND ";
} }