1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-13 08:02:38 +03:00

EventIndexPeg: Add a helper method to easily start the crawler.

This commit is contained in:
Damir Jelić
2019-11-26 13:37:53 +01:00
parent 4fe7752f3c
commit 928bb69b11

View File

@@ -69,6 +69,11 @@ class EventIndexPeg {
return this.index;
}
start() {
if (this.index === null) return;
this.index.startCrawler();
}
stop() {
if (this.index === null) return;
this.index.stopCrawler();