We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f451d2 commit 6ead268Copy full SHA for 6ead268
electron_app/src/electron-main.js
@@ -47,7 +47,11 @@ let Seshat = null;
47
try {
48
Seshat = require('matrix-seshat');
49
} catch (e) {
50
- console.warn("seshat unavailable", e);
+ if (e.code === "MODULE_NOT_FOUND") {
51
+ console.log("Seshat isn't installed, event indexing is disabled.");
52
+ } else {
53
+ console.warn("Seshat unexpected error:", e);
54
+ }
55
}
56
57
if (argv["help"]) {
0 commit comments