diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 719a43f58..bb95377ef 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -212,13 +212,17 @@ class RoomsListView extends React.Component { this.willFocusListener = navigation.addListener('willFocus', () => { // Check if there were changes while not focused (it's set on sCU) if (this.shouldUpdate) { - // animateNextTransition(); this.forceUpdate(); this.shouldUpdate = false; } }); this.didFocusListener = navigation.addListener('didFocus', () => { this.animated = true; + // Check if there were changes while not focused (it's set on sCU) + if (this.shouldUpdate) { + this.forceUpdate(); + this.shouldUpdate = false; + } this.backHandler = BackHandler.addEventListener('hardwareBackPress', this.handleBackPress); }); this.willBlurListener = navigation.addListener('willBlur', () => {