mirror of https://github.com/vector-im/riot-web
EventIndexPeg: Add a helper method to easily start the crawler.
parent
4fe7752f3c
commit
928bb69b11
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue