From 24ab492b77bd86f0843c554325e7c1f797e83cf4 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 18 Dec 2023 10:41:48 -0500 Subject: [PATCH] Fix overlooking whether auto-update is disabled Related feedback: https://old.reddit.com/r/uBlockOrigin/comments/18ktpd5/ --- src/js/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/storage.js b/src/js/storage.js index b8f85b733..151717c23 100644 --- a/src/js/storage.js +++ b/src/js/storage.js @@ -1510,7 +1510,7 @@ onBroadcast(msg => { } if ( µb.userSettings.autoUpdate === false ) { - if ( details.updateDelay === undefined ) { + if ( Boolean(details.updateDelay) === false ) { next = 0; return; }