mirror of https://github.com/gorhill/uBlock.git
Fix overlooking whether auto-update is disabled
Related feedback: https://old.reddit.com/r/uBlockOrigin/comments/18ktpd5/
This commit is contained in:
parent
ebd9d93666
commit
24ab492b77
|
@ -1510,7 +1510,7 @@ onBroadcast(msg => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( µb.userSettings.autoUpdate === false ) {
|
if ( µb.userSettings.autoUpdate === false ) {
|
||||||
if ( details.updateDelay === undefined ) {
|
if ( Boolean(details.updateDelay) === false ) {
|
||||||
next = 0;
|
next = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue