diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-07-27 20:34:47 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-07-27 20:34:47 -0400 |
commit | cc18a19b71c4848cb776a795dab08dbffebe3c70 (patch) | |
tree | 9bf1eb19ccb5b2ad60d9aca9e005852be87c6f05 /mailnews/base | |
parent | bd8be7bd67d542e2250c9d62b75e7e3f173b768a (diff) | |
download | aura-central-cc18a19b71c4848cb776a795dab08dbffebe3c70.tar.gz |
Revert "Follow up to 39be34c06 - The check sound be if not ordered"
This reverts commit d7d4567ffee9527aaaf4b975246445305e38ef9d.
Diffstat (limited to 'mailnews/base')
-rw-r--r-- | mailnews/base/util/folderUtils.jsm | 2 |
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); } |