EventIndex: Start the crawler only if it's configured to start.

This commit is contained in:
Damir Jelić 2019-11-26 13:31:16 +01:00
parent 47156351a6
commit 0132c3bbe3
2 changed files with 8 additions and 1 deletions

View file

@ -120,7 +120,9 @@ export default class EventIndex {
if (eventIndexWasEmpty) await addInitialCheckpoints();
// Start our crawler.
this.startCrawler();
if (SettingsStore.getValueAt(SettingLevel.DEVICE, 'enableCrawling')) {
this.startCrawler();
}
return;
}