зеркало из https://github.com/mozilla/gecko-dev.git
Bug 256314: Wrong identity chosen when address contains +; r=Stefan.Borggraefe, sr=bienvenu, a=bsmedberg
This commit is contained in:
Родитель
97417c0bb6
Коммит
61484f1c49
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче