1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 04:49:12 +02:00
This commit is contained in:
gorhill 2015-11-19 18:51:55 -05:00
parent dec3237991
commit 0f7dc32a5e
3 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "uBlock Origin",
"version": "1.3.4",
"version": "1.3.5",
"default_locale": "en",
"description": "__MSG_extShortDesc__",

View File

@ -2240,7 +2240,10 @@ vAPI.net.registerListeners = function() {
var browser = e.target;
// I have seen this happens (at startup time)
if ( !browser.currentURI ) {
// https://github.com/gorhill/uBlock/issues/948
// On older version of Firefox, `browser.webNavigation` can be null,
// which would cause currentURI to fail.
if ( !browser.webNavigation || !browser.currentURI ) {
return;
}

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "uBlock Origin",
"version": "1.3.4",
"version": "1.3.5",
"default_locale": "en",
"description": "__MSG_extShortDesc__",