summaryrefslogtreecommitdiffstats
path: root/mailnews/base
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-07-27 20:36:11 -0400
committerMatt A. Tobin <email@mattatobin.com>2020-07-27 20:36:11 -0400
commit15ed0691f6fe6e558c7e733af9fca0586c4d554b (patch)
tree50f28aa043e755e12d26bba2fafff3cc696e8872 /mailnews/base
parent13096ddf1db646f2b282ee069c2bc03b303cdec4 (diff)
downloadUXP-15ed0691f6fe6e558c7e733af9fca0586c4d554b.tar
UXP-15ed0691f6fe6e558c7e733af9fca0586c4d554b.tar.gz
UXP-15ed0691f6fe6e558c7e733af9fca0586c4d554b.tar.lz
UXP-15ed0691f6fe6e558c7e733af9fca0586c4d554b.tar.xz
UXP-15ed0691f6fe6e558c7e733af9fca0586c4d554b.zip
Follow up to 39be34c06 - The check sound be if not ordered
FINE! I'll go to bed already...
Diffstat (limited to 'mailnews/base')
-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 06e8e4bf2..f549bf655 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", false)) {
accountList = accountList.sort(compareAccounts);
}