Merge branch 'poljar/seshat-ui' into develop

This commit is contained in:
Damir Jelić 2020-01-24 14:40:54 +01:00
commit 7aff020d4d
2 changed files with 16 additions and 0 deletions

View file

@ -346,6 +346,18 @@ ipcMain.on('seshat', async function(ev, payload) {
}
break;
case 'getStats':
if (eventIndex === null) ret = 0;
else {
try {
ret = await eventIndex.getStats();
} catch (e) {
sendError(payload.id, e);
return;
}
}
break;
case 'removeCrawlerCheckpoint':
if (eventIndex === null) ret = false;
else {