From 108ed458e304a63824a720f463f6c032d4f150ca Mon Sep 17 00:00:00 2001 From: Boris Petrov Date: Thu, 10 May 2018 00:06:02 +0300 Subject: [PATCH] Fix calling executeSql with a wrong argument --- src/scripts/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/base.js b/src/scripts/base.js index 59b318e..ac96689 100644 --- a/src/scripts/base.js +++ b/src/scripts/base.js @@ -209,7 +209,7 @@ function delSetting(name) { // Creates the pages table in the database if it does not already exist. function initializeStorage(callback) { - executeSql(DATABASE_STRUCTURE, $.noop, callback); + executeSql(DATABASE_STRUCTURE, [], callback); } // Executes the specified SQL query with the specified arguments within a