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
commit7ad5c3cbfe922ad98e58c84d15c7fc849bb017da (patch)
tree9bf1eb19ccb5b2ad60d9aca9e005852be87c6f05 /mailnews
parent8501efb681ed3bf279d03d9111bff8e45e462393 (diff)
downloadaura-central-7ad5c3cbfe922ad98e58c84d15c7fc849bb017da.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 1562d21d5..06e8e4bf2 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);
}