downgrade sqlite3 library which has issues with electron build

This commit is contained in:
zadam
2020-05-03 21:27:24 +02:00
parent 227c3e4dcc
commit 647790885d
5 changed files with 59 additions and 70 deletions

View File

@@ -163,6 +163,10 @@ async function executeScript(query) {
}
async function wrap(func, query) {
if (!dbConnection) {
throw new Error("DB connection not initialized yet");
}
const thisError = new Error();
try {