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
1 changed files with 1 additions and 1 deletions

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;
}