1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 03:55:56 +00:00

instead of taking batch timestamp and score (?) into account, make oldest first sorting work consistently with newest first - i.e. rely on feed-provided timestamp

This commit is contained in:
Andrew Dolgov
2020-08-11 13:29:09 +03:00
parent 05a47e5cf4
commit 48be005774
3 changed files with 3 additions and 3 deletions

View File

@@ -537,7 +537,7 @@ class Feeds extends Handler_Protected {
$override_order = "ttrss_entries.title, date_entered, updated";
break;
case "date_reverse":
$override_order = "score DESC, date_entered, updated";
$override_order = "updated";
$skip_first_id_check = true;
break;
case "feed_dates":