Bug 1695703 - Follow-up: Password manager stores mailbox: instead of pop3:. r=benc

This commit is contained in:
Jorg K 2021-03-04 10:30:53 +01:00
Родитель c37e8363a8
Коммит 3d8685c753
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -99,7 +99,11 @@ nsMsgIncomingServer::Observe(nsISupports* aSubject, const char* aTopic,
GetHostName(hostname);
nsAutoCString fullName;
GetType(fullName);
fullName += "://"_ns + hostname;
if (fullName.EqualsLiteral("pop3")) {
fullName = "mailbox://"_ns + hostname;
} else {
fullName += "://"_ns + hostname;
}
if (!fullName.Equals(NS_ConvertUTF16toUTF8(hostnameInfo))) return NS_OK;
}
rv = ForgetSessionPassword();