Bug 1484534 - fix Android error page technical details r=johannh

Differential Revision: https://phabricator.services.mozilla.com/D3858

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Franziskus Kiefer 2018-08-21 12:04:57 +00:00
Родитель dde42d4dfa
Коммит 3d5b81aef3
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -179,7 +179,7 @@ var AboutCertErrorListener = {
return content.document.documentURI.startsWith("about:certerror");
},
_setTechDetailsMsgPart1(hostString, sslStatus, technicalInfo, doc) {
_setTechDetailsMsgPart1(hostString, sslStatus, securityInfo, technicalInfo, doc) {
let msg = gPipNSSBundle.formatStringFromName("certErrorIntro",
[hostString], 1);
msg += "\n\n";
@ -234,7 +234,7 @@ var AboutCertErrorListener = {
hostString += ":" + uri.port;
}
this._setTechDetailsMsgPart1(hostString, sslStatus, technicalInfo, doc);
this._setTechDetailsMsgPart1(hostString, sslStatus, securityInfo, technicalInfo, doc);
if (sslStatus.isDomainMismatch) {
let subjectAltNamesList = sslStatus.serverCert.subjectAltNames;