1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-22 04:02:40 +03:00

Merge pull request #2480 from matrix-org/bwindels/typingnotifsmallfix

Fix: apparently room can be null here
This commit is contained in:
Bruno Windels
2019-01-22 17:04:00 +00:00
committed by GitHub

View File

@@ -82,7 +82,7 @@ module.exports = React.createClass({
}, },
onRoomTimeline: function(event, room) { onRoomTimeline: function(event, room) {
if (room.roomId === this.props.room.roomId) { if (room && room.roomId === this.props.room.roomId) {
const userId = event.getSender(); const userId = event.getSender();
// remove user from usersTyping // remove user from usersTyping
const usersTyping = this.state.usersTyping.filter((m) => m.userId !== userId); const usersTyping = this.state.usersTyping.filter((m) => m.userId !== userId);