summaryrefslogtreecommitdiff
path: root/classes/api.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-08-11 13:29:09 +0300
committerAndrew Dolgov <[email protected]>2020-08-11 13:29:09 +0300
commit48be0057744944432aab6f0235068250f96f0a8e (patch)
treea7227c79da0f3765cb4a183afceda15d9012d033 /classes/api.php
parent05a47e5cf4d1044f2ff8861298a8050c124451b4 (diff)
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
Diffstat (limited to 'classes/api.php')
-rwxr-xr-xclasses/api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/api.php b/classes/api.php
index eda79df45..7c8c4c9f1 100755
--- a/classes/api.php
+++ b/classes/api.php
@@ -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":