[Pkg-mozext-commits] [perspectives-extension] 17/44: Pers_util - fix == usage

David Prévot taffit at moszumanska.debian.org
Sun Jun 26 04:59:19 UTC 2016


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository perspectives-extension.

commit 59eddcfd169e5bb3f193cbc384127feb0f8dabc1
Author: Dave Schaefer <dave.schaefer at gmail.com>
Date:   Sun Jun 12 21:32:35 2016 -0700

    Pers_util - fix == usage
---
 plugin/chrome/content/common.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugin/chrome/content/common.js b/plugin/chrome/content/common.js
index 91649b5..c24c333 100644
--- a/plugin/chrome/content/common.js
+++ b/plugin/chrome/content/common.js
@@ -240,7 +240,7 @@ var Pers_util = {
 			}
 			root_prefs.setCharPref("extensions.perspectives.default_notary_list",notary_list_data);
 		} catch(e) {
-			if(Perspectives.strbundle == null) {
+			if(Perspectives.strbundle === null) {
 				Perspectives.strbundle = document.getElementById("notary_strings");
 			}
 
@@ -255,7 +255,7 @@ var Pers_util = {
 			var notary_list_data = this.readFileFromURI("chrome://perspectives/content/http_notary_list.txt");
 			root_prefs.setCharPref("extensions.perspectives.default_notary_list",notary_list_data);
 		} catch(e) {
-			if(Perspectives.strbundle == null) {
+			if(Perspectives.strbundle === null) {
 				Perspectives.strbundle = document.getElementById("notary_strings");
 			}
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/perspectives-extension.git



More information about the Pkg-mozext-commits mailing list