summaryrefslogtreecommitdiffstats
path: root/js/controller/ContentController.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/controller/ContentController.js')
-rw-r--r--js/controller/ContentController.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/controller/ContentController.js b/js/controller/ContentController.js
index 7d34f04b2..d22988d6c 100644
--- a/js/controller/ContentController.js
+++ b/js/controller/ContentController.js
@@ -61,9 +61,9 @@ function (Publisher, FeedResource, ItemResource, SettingsResource, data,
this.orderBy = function () {
if (SettingsResource.get('oldestFirst')) {
- return '-id';
- } else {
return 'id';
+ } else {
+ return '-id';
}
};