second part of fix for #27913 - make sure identities exist at the time the server is attached to the account, so that there are actually identities associated with the account when the server is loaded and queried by rdf

r=sspitzer, a=phil, chofmann
This commit is contained in:
alecf%netscape.com 2000-02-18 07:43:38 +00:00
Родитель 0f4847c43e
Коммит a51ec724d9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -250,8 +250,8 @@ function createAccount(accountData)
dump("am.createAccount()\n");
var account = am.createAccount();
account.incomingServer = server;
account.addIdentity(identity);
account.incomingServer = server;
return account;
}