diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-07-27 20:32:25 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-07-27 20:32:25 -0400 |
commit | d826eda73d978d617fb346393b4d2f37408a475f (patch) | |
tree | 9bf1eb19ccb5b2ad60d9aca9e005852be87c6f05 /mailnews/base | |
parent | 8698bde001373f7d2dd4ecddd80874d683bab32e (diff) | |
download | uxp-d826eda73d978d617fb346393b4d2f37408a475f.tar.gz |
Revert "Follow up to 39be34c06 - The check sound be if not ordered"
This reverts commit 8698bde001373f7d2dd4ecddd80874d683bab32e.
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 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); } |