forked from mystiq/hydrogen-web
Check if state_key is present
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
187cf5cd28
commit
d85cf982cc
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ export class Room extends BaseRoom {
|
|||
}
|
||||
|
||||
_getPowerLevelsEvent(roomResponse) {
|
||||
const isPowerlevelEvent = event => event.type === POWERLEVELS_EVENT_TYPE;
|
||||
const isPowerlevelEvent = event => event.state_key !== undefined && event.type === POWERLEVELS_EVENT_TYPE;
|
||||
const powerLevelEvent = roomResponse.timeline?.events.find(isPowerlevelEvent) ?? roomResponse.state?.events.find(isPowerlevelEvent);
|
||||
return powerLevelEvent;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue