Skip to content

Commit a968389

Browse files
committed
ElectronPlatform: Implement the isRoomIndexed method.
1 parent bf174e3 commit a968389

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/vector/platform/ElectronPlatform.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,10 @@ class SeshatIndexManager extends BaseEventIndexManager {
153153
return this._ipcCall('isEventIndexEmpty');
154154
}
155155

156+
async isRoomIndexed(roomId: string): Promise<boolean> {
157+
return this._ipcCall('isRoomIndexed', roomId);
158+
}
159+
156160
async commitLiveEvents(): Promise<void> {
157161
return this._ipcCall('commitLiveEvents');
158162
}

0 commit comments

Comments
 (0)