From a968389c8557bd2ed6132f99f67f04381ad69008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Mon, 8 Jun 2020 16:41:55 +0200 Subject: [PATCH] ElectronPlatform: Implement the isRoomIndexed method. --- src/vector/platform/ElectronPlatform.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index a0677264..c6e7d647 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'); }