EventIndexPeg: Treat both cases of unavailable platform support the same.

pull/21833/head
Damir Jelić 2019-11-18 10:34:48 +01:00
parent ddb536e94a
commit 050e52ce46
1 changed files with 1 additions and 3 deletions

View File

@ -38,9 +38,7 @@ class EventIndexPeg {
*/
async init() {
const indexManager = PlatformPeg.get().getEventIndexingManager();
if (indexManager === null) return false;
if (await indexManager.supportsEventIndexing() !== true) {
if (!indexManager || await indexManager.supportsEventIndexing() !== true) {
console.log("EventIndex: Platform doesn't support event indexing,",
"not initializing.");
return false;