summaryrefslogtreecommitdiff
path: root/mailnews
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-07-27 20:32:25 -0400
committerMatt A. Tobin <email@mattatobin.com>2020-07-27 20:32:25 -0400
commitf6459853349001670c87c8926f7ac4e5c4286723 (patch)
tree9bf1eb19ccb5b2ad60d9aca9e005852be87c6f05 /mailnews
parentcbfa6b865d159a3816c2f02feaf4d927cff30af6 (diff)
downloaduxp-f6459853349001670c87c8926f7ac4e5c4286723.tar.gz
Revert "Follow up to 39be34c06 - The check sound be if not ordered"
This reverts commit 8698bde001373f7d2dd4ecddd80874d683bab32e.
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 1562d21d5a..06e8e4bf2b 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);
}