[Pkg-mozext-commits] [firebug] 49/56: Issue 7699: Exception in Firebug 2.0.5

David Prévot taffit at moszumanska.debian.org
Wed Nov 19 21:01:46 UTC 2014


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

taffit pushed a commit to branch master
in repository firebug.

commit cdefa43c52b5155addc9e7a408a66d62eb504d48
Author: Jan Odvarko <odvarko at gmail.com>
Date:   Wed Nov 5 14:15:10 2014 +0100

    Issue 7699: Exception in Firebug 2.0.5
---
 extension/content/firebug/firefox/browserOverlay.js | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/extension/content/firebug/firefox/browserOverlay.js b/extension/content/firebug/firefox/browserOverlay.js
index dc10d57..9acd584 100644
--- a/extension/content/firebug/firefox/browserOverlay.js
+++ b/extension/content/firebug/firefox/browserOverlay.js
@@ -43,7 +43,12 @@ Cu.import("resource://gre/modules/Services.jsm", servicesScope);
 
 const firstRunPage = "https://getfirebug.com/firstrun#Firebug ";
 
-const auroraChannel = servicesScope.Services.prefs.getCharPref("app.update.channel") == "aurora";
+var auroraChannel = "";
+try {
+  auroraChannel = servicesScope.Services.prefs.getCharPref("app.update.channel") == "aurora";
+}
+catch (err) {
+}
 
 // ********************************************************************************************* //
 // BrowserOverlay Implementation

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



More information about the Pkg-mozext-commits mailing list