1 parent bf174e3 commit a968389Copy full SHA for a968389
1 file changed
src/vector/platform/ElectronPlatform.tsx
@@ -153,6 +153,10 @@ class SeshatIndexManager extends BaseEventIndexManager {
153
return this._ipcCall('isEventIndexEmpty');
154
}
155
156
+ async isRoomIndexed(roomId: string): Promise<boolean> {
157
+ return this._ipcCall('isRoomIndexed', roomId);
158
+ }
159
+
160
async commitLiveEvents(): Promise<void> {
161
return this._ipcCall('commitLiveEvents');
162
0 commit comments