From 24645d4b58ca68a8cb5065e854c744f20264f2cc Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Mon, 4 Nov 2019 15:05:23 +0100 Subject: [PATCH] Issue #1064 - Part 3: Fix notifyObservers() call. --- security/manager/pki/resources/content/exceptionDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/manager/pki/resources/content/exceptionDialog.js b/security/manager/pki/resources/content/exceptionDialog.js index d227c3117e..1f719bc29f 100644 --- a/security/manager/pki/resources/content/exceptionDialog.js +++ b/security/manager/pki/resources/content/exceptionDialog.js @@ -235,7 +235,7 @@ function updateCertStatus() { document.getElementById("viewCertButton").disabled = false; // Notify observers about the availability of the certificate - Services.obs.notifyObservers(null, "cert-exception-ui-ready"); + Services.obs.notifyObservers(null, "cert-exception-ui-ready", null); } else if (gChecking) { shortDesc = "addExceptionCheckingShort"; longDesc = "addExceptionCheckingLong2";