mirror of https://github.com/gorhill/uBlock.git
Import emergency fix 5a29a21c81
in dev build
This commit is contained in:
parent
1f398134f9
commit
294ea41fde
|
@ -1 +1 @@
|
|||
1.19.3.12
|
||||
1.19.3.13
|
||||
|
|
|
@ -693,6 +693,10 @@ api.get = function(assetKey, options, callback) {
|
|||
} else if ( typeof callback !== 'function' ) {
|
||||
callback = noopfunc;
|
||||
}
|
||||
// This can happen if the method was called as a thenable.
|
||||
if ( options instanceof Object === false ) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
return new Promise(resolve => {
|
||||
// start of executor
|
||||
|
|
Loading…
Reference in New Issue