Tweak a few room ID checks

This commit is contained in:
J. Ryan Stinnett 2021-01-29 11:15:30 +00:00
parent 241955f7c2
commit c9a6214256
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@ export default class WhoIsTypingTile extends React.Component {
};
onRoomTimeline = (event, room) => {
if (room && room.roomId === this.props.room.roomId) {
if (room?.roomId === this.props.room?.roomId) {
const userId = event.getSender();
// remove user from usersTyping
const usersTyping = this.state.usersTyping.filter((m) => m.userId !== userId);