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

Fix overlooking whether auto-update is disabled

Related feedback:
https://old.reddit.com/r/uBlockOrigin/comments/18ktpd5/
This commit is contained in:
Raymond Hill 2023-12-18 10:41:48 -05:00
parent ebd9d93666
commit 24ab492b77
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1510,7 +1510,7 @@ onBroadcast(msg => {
}
if ( µb.userSettings.autoUpdate === false ) {
if ( details.updateDelay === undefined ) {
if ( Boolean(details.updateDelay) === false ) {
next = 0;
return;
}