diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-07-27 20:30:56 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-07-27 20:30:56 -0400 |
commit | 8698bde001373f7d2dd4ecddd80874d683bab32e (patch) | |
tree | d0adbb1b86552f996047f66403c2526c2a7a1b8d | |
parent | 9ac440aa71abf4357acea2efee1a26904468ea62 (diff) | |
download | uxp-8698bde001373f7d2dd4ecddd80874d683bab32e.tar.gz |
Follow up to 39be34c06 - The check sound be if not ordered
-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 06e8e4bf2b..1562d21d5a 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); } |