From f21eb64fc2f7b5df1be26d623a6c623da03fb30f Mon Sep 17 00:00:00 2001 From: yflory Date: Thu, 10 Dec 2020 13:03:22 +0100 Subject: [PATCH] lint compliance --- www/common/outer/cache-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/cache-store.js b/www/common/outer/cache-store.js index e55287d8c..067d2dda7 100644 --- a/www/common/outer/cache-store.js +++ b/www/common/outer/cache-store.js @@ -8,7 +8,7 @@ define([ // Check if indexedDB is allowed var allowed = false; try { - let request = indexedDB.open('mydatabase', 1); + var request = window.indexedDB.open('test_db', 1); request.onsuccess = function () { allowed = true; onReady.fire();