1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-06 02:59:39 +02:00

fix regression in Firefox legacy version

This commit is contained in:
Raymond Hill 2018-03-11 18:59:21 -04:00
parent eb789939ca
commit 1e8d966938
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -913,10 +913,13 @@ var updateFirst = function() {
// Allow self-hosted dev build to update: if update_url is present but
// null, assume the extension is hosted on AMO.
if ( noRemoteResources === undefined ) {
var manifest = chrome.runtime.getManifest();
var manifest =
typeof browser === 'object' &&
browser.runtime.getManifest();
noRemoteResources =
typeof vAPI.webextFlavor === 'string' &&
vAPI.webextFlavor.startsWith('Mozilla-Firefox-') &&
manifest instanceof Object &&
manifest.applications instanceof Object &&
manifest.applications.gecko instanceof Object &&
manifest.applications.gecko.update_url === null;