mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Import emergency fix 5a29a21c81 in dev build
This commit is contained in:
parent
1f398134f9
commit
294ea41fde
2 changed files with 5 additions and 1 deletions
2
dist/version
vendored
2
dist/version
vendored
|
|
@ -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 a new issue