mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
Merge remote-tracking branch 'origin/poljar/eventindex-user-version' into develop
This commit is contained in:
commit
069f009d85
@ -618,6 +618,30 @@ ipcMain.on('seshat', async function(ev, payload) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'setUserVersion':
|
||||||
|
if (eventIndex === null) break;
|
||||||
|
else {
|
||||||
|
try {
|
||||||
|
await eventIndex.setUserVersion(args[0]);
|
||||||
|
} catch (e) {
|
||||||
|
sendError(payload.id, e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'getUserVersion':
|
||||||
|
if (eventIndex === null) ret = 0;
|
||||||
|
else {
|
||||||
|
try {
|
||||||
|
ret = await eventIndex.getUserVersion();
|
||||||
|
} catch (e) {
|
||||||
|
sendError(payload.id, e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
mainWindow.webContents.send('seshatReply', {
|
mainWindow.webContents.send('seshatReply', {
|
||||||
id: payload.id,
|
id: payload.id,
|
||||||
|
Loading…
Reference in New Issue
Block a user