bug 969758 - ignore "snionly" property in Google's HSTS preload list r=cviecco DONTBUILD because NPOTB

This commit is contained in:
David Keeler 2014-03-21 14:09:04 -07:00
parent c5b582932b
commit d33e060a52

View File

@ -138,8 +138,7 @@ function processStsHeader(host, header, status) {
}
}
let forceInclude = (host.forceInclude ||
(host.pins == "google" && !host.snionly));
let forceInclude = (host.forceInclude || host.pins == "google");
if (error == ERROR_NONE && maxAge.value < MINIMUM_REQUIRED_MAX_AGE) {
error = ERROR_MAX_AGE_TOO_LOW;