electron-main: Add a missing break.

pull/11125/head
Damir Jelić 2019-11-13 15:59:59 +01:00
parent c3c5756c7a
commit 449eca6fb4
1 changed files with 1 additions and 0 deletions

View File

@ -262,6 +262,7 @@ ipcMain.on('seshat', async function(ev, payload) {
case 'deleteEventIndex':
await eventIndex.delete();
eventIndex = null;
break;
case 'isEventIndexEmpty':
if (eventIndex === null) ret = true;