oops, this should be checking if we have any accounts not if we have negative!

This commit is contained in:
alecf%netscape.com 1999-09-11 09:10:03 +00:00
Родитель e036f0750c
Коммит 5f2d349f84
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -79,7 +79,7 @@ function verifyAccounts() {
var accounts = am.accounts;
// as long as we have some accounts, we're fine.
if (accounts.Count() < 0) return;
if (accounts.Count() > 0) return;
try {
am.UpgradePrefs();