Think about what you copy-paste, Simon

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-06-24 14:15:44 +02:00
parent a774aed365
commit d2d8cb3c24
No known key found for this signature in database
GPG key ID: 9760693FDD98A790

View file

@ -89,10 +89,7 @@ export default class MemberList extends React.Component<IProps, IState> {
cli.on("Room", this.onRoom); // invites & joining after peek
const enablePresenceByHsUrl = SdkConfig.get()["enable_presence_by_hs_url"];
const hsUrl = MatrixClientPeg.get().baseUrl;
this.showPresence = true;
if (enablePresenceByHsUrl && enablePresenceByHsUrl[hsUrl] !== undefined) {
this.showPresence = enablePresenceByHsUrl?.[hsUrl] ?? true;
}
this.showPresence = enablePresenceByHsUrl?.[hsUrl] ?? true;
}
// eslint-disable-next-line camelcase