diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 9cccdfc5b..719a43f58 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -549,6 +549,10 @@ class RoomsListView extends React.Component { } _onPressItem = async(item = {}) => { + const { navigation } = this.props; + if (!navigation.isFocused()) { + return; + } if (!item.search) { return this.goRoom(item); }