mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-04 08:33:32 +02:00
Fix :pageinfo security section construction.
gIdentityHandler._lastLocation is now _lastUri.
This commit is contained in:
@@ -2699,9 +2699,11 @@ Buffer.addPageInfoSection("s", "Security", function (verbose) {
|
|||||||
|
|
||||||
yield ["Verified by", data.caOrg];
|
yield ["Verified by", data.caOrg];
|
||||||
|
|
||||||
if (identity._overrideService.hasMatchingOverride(identity._lastLocation.hostname,
|
let { host, port } = identity._lastUri;
|
||||||
(identity._lastLocation.port || 443),
|
if (port == -1)
|
||||||
data.cert, {}, {}))
|
port = 443;
|
||||||
|
|
||||||
|
if (identity._overrideService.hasMatchingOverride(host, port, data.cert, {}, {}))
|
||||||
yield ["User exception", /*L*/"true"];
|
yield ["User exception", /*L*/"true"];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user