summaryrefslogtreecommitdiffstats
path: root/mailnews/base
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-07-27 20:33:34 -0400
committerMatt A. Tobin <email@mattatobin.com>2020-07-27 20:33:34 -0400
commitd7d4567ffee9527aaaf4b975246445305e38ef9d (patch)
treee7c5b3ce3fc17173d8b8e5437476392161b618a2 /mailnews/base
parentd826eda73d978d617fb346393b4d2f37408a475f (diff)
downloadUXP-d7d4567ffee9527aaaf4b975246445305e38ef9d.tar
UXP-d7d4567ffee9527aaaf4b975246445305e38ef9d.tar.gz
UXP-d7d4567ffee9527aaaf4b975246445305e38ef9d.tar.lz
UXP-d7d4567ffee9527aaaf4b975246445305e38ef9d.tar.xz
UXP-d7d4567ffee9527aaaf4b975246445305e38ef9d.zip
Follow up to 39be34c06 - The check sound be if not ordered
I am tired.
Diffstat (limited to 'mailnews/base')
-rw-r--r--mailnews/base/util/folderUtils.jsm2
1 files changed, 1 insertions, 1 deletions
diff --git a/mailnews/base/util/folderUtils.jsm b/mailnews/base/util/folderUtils.jsm
index 06e8e4bf2..1562d21d5 100644
--- a/mailnews/base/util/folderUtils.jsm
+++ b/mailnews/base/util/folderUtils.jsm
@@ -172,7 +172,7 @@ function allAccountsSorted(aExcludeIMAccounts) {
}
// Sort the accounts else will respect the order in mail.accountmanager.accounts
- if (Services.prefs.getBoolPref("mail.accountmanager.accounts.ordered", true)) {
+ if (!Services.prefs.getBoolPref("mail.accountmanager.accounts.ordered", true)) {
accountList = accountList.sort(compareAccounts);
}