From ff269d793da59bb630d06eb0cc40802e00cfaae5 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 1 Feb 2019 08:27:28 -0500 Subject: [PATCH] Use `indexedDB` instead of for cacheStorageAPI value --- src/js/cachestorage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/cachestorage.js b/src/js/cachestorage.js index a436651c7..9b5a0035f 100644 --- a/src/js/cachestorage.js +++ b/src/js/cachestorage.js @@ -53,7 +53,7 @@ // IndexedDB. if ( vAPI.webextFlavor.soup.has('firefox') === false && - µBlock.hiddenSettings.cacheStorageAPI !== 'IndexedDB' + µBlock.hiddenSettings.cacheStorageAPI !== 'indexedDB' ) { // In case IndexedDB was used as cache storage, remove it. indexedDB.deleteDatabase(STORAGE_NAME);