Skip to content

Commit a6839af

Browse files
committed
electron-main: Use a capital letter for the seshat import.
1 parent 94196eb commit a6839af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

electron_app/src/electron-main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const { migrateFromOldOrigin } = require('./originMigrator');
3939

4040
const windowStateKeeper = require('electron-window-state');
4141
const Store = require('electron-store');
42-
const seshat = require('seshat-node');
42+
const Seshat = require('seshat-node');
4343
const makeDir = require('make-dir');
4444

4545
if (argv["help"]) {
@@ -223,7 +223,7 @@ ipcMain.on('ipcCall', async function(ev, payload) {
223223
let p = path.normalize(path.join(eventStorePath, args[0]));
224224
try {
225225
await makeDir(p);
226-
eventIndex = new seshat(p);
226+
eventIndex = new Seshat(p);
227227
console.log("Initialized event store");
228228
} catch (e) {
229229
sendError(payload.id, e);

0 commit comments

Comments
 (0)