You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating a project to Electron 26.1.0 and better-sqlite3 to 8.5.2, the app immediatly crashed whenever the first function is called on a Database instance. The app was running on Windows 10 x64. The error reported is '[5204:0825/183808.198:ERROR:crashpad_client_win.cc(844)] not connected'.
A minimal example consiting of package.json and index.js looks like:
const { app } = require("electron");
function onReady() {
const Database = require('better-sqlite3');
const db = new Database(':memory:', { timeout: 15000 });
db.pragma('journal_mode = WAL;');
}
app.on('ready', onReady);
After installing and starting with npm run start the example app instantly crashes. Also happens with Electron 26.0.0. The issue disappears when reverting to Electron 25.7.0.
The text was updated successfully, but these errors were encountered:
After updating a project to Electron 26.1.0 and better-sqlite3 to 8.5.2, the app immediatly crashed whenever the first function is called on a Database instance. The app was running on Windows 10 x64. The error reported is '[5204:0825/183808.198:ERROR:crashpad_client_win.cc(844)] not connected'.
A minimal example consiting of package.json and index.js looks like:
package.json
index.js
After installing and starting with
npm run start
the example app instantly crashes. Also happens with Electron 26.0.0. The issue disappears when reverting to Electron 25.7.0.The text was updated successfully, but these errors were encountered: