summaryrefslogtreecommitdiffstats
path: root/mailnews
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
commit8698bde001373f7d2dd4ecddd80874d683bab32e (patch)
treed0adbb1b86552f996047f66403c2526c2a7a1b8d /mailnews
parent9ac440aa71abf4357acea2efee1a26904468ea62 (diff)
downloadUXP-8698bde001373f7d2dd4ecddd80874d683bab32e.tar
UXP-8698bde001373f7d2dd4ecddd80874d683bab32e.tar.gz
UXP-8698bde001373f7d2dd4ecddd80874d683bab32e.tar.lz
UXP-8698bde001373f7d2dd4ecddd80874d683bab32e.tar.xz
UXP-8698bde001373f7d2dd4ecddd80874d683bab32e.zip
Follow up to 39be34c06 - The check sound be if not ordered
Diffstat (limited to 'mailnews')
-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);
}