diff --git a/app/presentation/RoomItem/index.js b/app/presentation/RoomItem/index.js index 665b938f3c..d38c1f687a 100644 --- a/app/presentation/RoomItem/index.js +++ b/app/presentation/RoomItem/index.js @@ -64,6 +64,10 @@ class RoomItemContainer extends React.Component { componentDidMount() { this.mounted = true; + const { connected, getUserPresence, id } = this.props; + if (connected && this.isDirect) { + getUserPresence(id); + } } shouldComponentUpdate(nextProps) {