From: Andrew Dolgov Date: Mon, 5 Jun 2006 09:05:07 +0000 (+0100) Subject: don't sort feedlist when sorting option is disabled X-Git-Tag: 1.2.0~14 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=cea51014f7e938dc9688d3370e5f2cdc3115a3ef;p=tt-rss.git don't sort feedlist when sorting option is disabled --- diff --git a/functions.js b/functions.js index 7ed20d53..d25670c4 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(); }