mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-23 02:42:41 +01:00
#948: this possibly addresses the 1st reported error case
This commit is contained in:
parent
75f8802487
commit
4e9d41a150
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user