From f7a632c94ab6395f875b620e980edfe2eb51d8f1 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 18 Feb 2019 06:18:30 -0500 Subject: [PATCH] Fix regression preventing new install or reseting to factory default Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/431 --- 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 1216c8b6b..16c958941 100644 --- a/src/js/storage.js +++ b/src/js/storage.js @@ -256,7 +256,7 @@ bin instanceof Object === false || Array.isArray(bin.selectedFilterLists) === false ) { - this.assets.metadata(function(availableLists) { + this.assets.metadata(availableLists => { this.saveSelectedFilterLists( this.autoSelectRegionalFilterLists(availableLists) );