1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:55:55 +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

@@ -222,7 +222,7 @@ class API extends Handler {
$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":