From 0e9d4714e9f61497f1ffaa732060ddf6932f061c Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 24 Aug 2020 12:40:36 -0400 Subject: [PATCH] Mibor: better variable name --- src/js/storage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/storage.js b/src/js/storage.js index 361b280b4..17f7e2a7b 100644 --- a/src/js/storage.js +++ b/src/js/storage.js @@ -543,8 +543,8 @@ self.addEventListener('hiddenSettingsChanged', ( ) => { for ( const line of badlists.content.split(/\s*[\n\r]+\s*/) ) { if ( line === '' || line.startsWith('#') ) { continue; } const fields = line.split(/\s+/); - const remove = fields.length === 2 && fields[1] === 'nofetch'; - this.badLists.set(fields[0], remove); + const nofetch = fields.length === 2 && fields[1] === 'nofetch'; + this.badLists.set(fields[0], nofetch); } }