mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-28 18:01:46 +02:00
EventIndexPeg: Treat both cases of unavailable platform support the same.
This commit is contained in:
parent
ddb536e94a
commit
050e52ce46
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user