Bug 256314: Wrong identity chosen when address contains +; r=Stefan.Borggraefe, sr=bienvenu, a=bsmedberg

This commit is contained in:
mnyromyr%tprac.de 2005-06-28 21:44:09 +00:00
Родитель 97417c0bb6
Коммит 61484f1c49
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -103,7 +103,7 @@ function getBestIdentity(identities, optionalHint)
var tempID;
for (id = 0; id < identities.Count(); id++) {
tempID = identities.GetElementAt(id).QueryInterface(Components.interfaces.nsIMsgIdentity);
if (optionalHint.search(tempID.email.toLowerCase()) >= 0) {
if (optionalHint.indexOf(tempID.email.toLowerCase()) >= 0) {
identity = tempID;
break;
}

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

@ -105,7 +105,7 @@ function getBestIdentity(identities, optionalHint)
var tempID;
for (id = 0; id < identities.Count(); id++) {
tempID = identities.GetElementAt(id).QueryInterface(Components.interfaces.nsIMsgIdentity);
if (optionalHint.search(tempID.email.toLowerCase()) >= 0) {
if (optionalHint.indexOf(tempID.email.toLowerCase()) >= 0) {
identity = tempID;
break;
}