- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 429
Closed
Labels
Description
Error message before crash is
[20860:0821/201632.615257:ERROR:child_thread_impl.cc(235)] Invalid PlatformChannel receive right
Code is
      let database: Sqlite3Database.Database;
      try {
        database = new Sqlite3Database(':memory:', { verbose: logger.debug, nativeBinding: SQLITE_BINARY_PATH });
      } catch (error) {
        logger.error(`error when loading sqlite3 for workspace ${workspaceID}, skip because of error to prevent crash: ${(error as Error).message}`);
        return;
      }It was working in 8.4.0 + "electron": "25.2.0",
Not working with 8.5.1 + "electron": "26.0.0", or 8.4.0 + + "electron": "26.0.0",
So it is electron's falut.
kryops