summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-06-05 10:05:07 +0100
committerAndrew Dolgov <[email protected]>2006-06-05 10:05:07 +0100
commitcea51014f7e938dc9688d3370e5f2cdc3115a3ef (patch)
treeacb853c44f65d41303f39666322b7ea04e612bff
parentc9268ed5996a2d61cd6b8d389ce27cfe12b0e4f4 (diff)
don't sort feedlist when sorting option is disabled
-rw-r--r--functions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 7ed20d532..d25670c41 100644
--- a/functions.js
+++ b/functions.js
@@ -582,7 +582,7 @@ function all_counters_callback() {
getMainContext().parse_runtime_info(runtime);
}
- if (getInitParam("feeds_sort_by_unread")) {
+ if (getInitParam("feeds_sort_by_unread") == 1) {
resort_feedlist();
}