summaryrefslogtreecommitdiff
path: root/mailnews/base
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-07-27 20:30:56 -0400
committerMatt A. Tobin <email@mattatobin.com>2020-07-27 20:30:56 -0400
commitcbfa6b865d159a3816c2f02feaf4d927cff30af6 (patch)
treed0adbb1b86552f996047f66403c2526c2a7a1b8d /mailnews/base
parent97ac0b18976f47f51ef3bcd10c0a092af8496d7e (diff)
downloaduxp-cbfa6b865d159a3816c2f02feaf4d927cff30af6.tar.gz
Follow up to 39be34c06 - The check sound be if not ordered
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 06e8e4bf2b..1562d21d5a 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);
}