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

@ -45,7 +45,7 @@ class FilePanel extends React.Component {
};
onRoomTimeline = (ev, room, toStartOfTimeline, removed, data) => {
if (room.roomId !== this.props.roomId) return;
if (room?.roomId !== this.props?.roomId) return;
if (toStartOfTimeline || !data || !data.liveEvent || ev.isRedacted()) return;
if (ev.isBeingDecrypted()) {