diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index a0677264b4..c6e7d6479b 100644 --- a/src/vector/platform/ElectronPlatform.tsx +++ b/src/vector/platform/ElectronPlatform.tsx @@ -153,6 +153,10 @@ class SeshatIndexManager extends BaseEventIndexManager { return this._ipcCall('isEventIndexEmpty'); } + async isRoomIndexed(roomId: string): Promise { + return this._ipcCall('isRoomIndexed', roomId); + } + async commitLiveEvents(): Promise { return this._ipcCall('commitLiveEvents'); }