Iterate PR

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-06-24 14:07:43 +02:00
parent b7a821a9e4
commit a774aed365
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ export default class MemberList extends React.Component<IProps, IState> {
const hsUrl = MatrixClientPeg.get().baseUrl;
this.showPresence = true;
if (enablePresenceByHsUrl && enablePresenceByHsUrl[hsUrl] !== undefined) {
this.showPresence = enablePresenceByHsUrl[hsUrl];
this.showPresence = enablePresenceByHsUrl?.[hsUrl] ?? true;
}
}