mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
[TychoAM] Fix gCertBlocklistService.addRevokedCert is not a function
Mozilla renamed it to revokeCertByIssuerAndSerial
This commit is contained in:
parent
ce9848de49
commit
9feb54bfda
1 changed files with 1 additions and 1 deletions
|
|
@ -910,7 +910,7 @@ Blocklist.prototype = {
|
|||
let issuer = blocklistElement.getAttribute("issuerName");
|
||||
for (let snElement of blocklistElement.children) {
|
||||
try {
|
||||
gCertBlocklistService.addRevokedCert(issuer, snElement.textContent);
|
||||
gCertBlocklistService.revokeCertByIssuerAndSerial(issuer, snElement.textContent);
|
||||
} catch (e) {
|
||||
// we want to keep trying other elements since missing all items
|
||||
// is worse than missing one
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue