Remove rooms.include from goRoom
This commit is contained in:
parent
3d1c594efc
commit
a352dc926d
|
@ -729,8 +729,7 @@ class RoomsListView extends React.Component {
|
||||||
goRoom = ({ item, isMasterDetail }) => {
|
goRoom = ({ item, isMasterDetail }) => {
|
||||||
logEvent(events.RL_GO_ROOM);
|
logEvent(events.RL_GO_ROOM);
|
||||||
const { item: currentItem } = this.state;
|
const { item: currentItem } = this.state;
|
||||||
const { rooms } = this.props;
|
if (currentItem?.rid === item.rid) {
|
||||||
if (currentItem?.rid === item.rid || rooms?.includes(item.rid)) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Only mark room as focused when in master detail layout
|
// Only mark room as focused when in master detail layout
|
||||||
|
|
Loading…
Reference in New Issue