mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-24 03:12:46 +01:00
this fixes /gorhill/httpswitchboard/issues/381
This commit is contained in:
parent
93d45137e4
commit
66ea8355f2
17
js/assets.js
17
js/assets.js
@ -79,13 +79,18 @@ var cachedAssetsManager = (function() {
|
||||
return;
|
||||
}
|
||||
var onLoaded = function(bin) {
|
||||
if ( chrome.runtime.lastError ) {
|
||||
console.error(
|
||||
'µBlock> cachedAssetsManager> getEntries():',
|
||||
chrome.runtime.lastError.message
|
||||
);
|
||||
// https://github.com/gorhill/httpswitchboard/issues/381
|
||||
// Maybe the index was requested multiple times and already
|
||||
// fetched by one of the occurrences.
|
||||
if ( entries === null ) {
|
||||
if ( chrome.runtime.lastError ) {
|
||||
console.error(
|
||||
'µBlock> cachedAssetsManager> getEntries():',
|
||||
chrome.runtime.lastError.message
|
||||
);
|
||||
}
|
||||
entries = bin.cached_asset_entries || {};
|
||||
}
|
||||
entries = bin.cached_asset_entries || {};
|
||||
callback(entries);
|
||||
};
|
||||
chrome.storage.local.get('cached_asset_entries', onLoaded);
|
||||
|
@ -2,7 +2,7 @@
|
||||
"manifest_version": 2,
|
||||
"name": "__MSG_extName__",
|
||||
"short_name": "µBlock",
|
||||
"version": "0.2.3.4",
|
||||
"version": "0.2.3.5",
|
||||
"description": "__MSG_extShortDesc__",
|
||||
"icons": {
|
||||
"16": "img/icon_16.png",
|
||||
|
Loading…
Reference in New Issue
Block a user