diff --git a/app/soapbox/features/ui/index.js b/app/soapbox/features/ui/index.js index 5e2ed0a43..51a8188dc 100644 --- a/app/soapbox/features/ui/index.js +++ b/app/soapbox/features/ui/index.js @@ -488,6 +488,12 @@ class UI extends React.PureComponent { componentDidUpdate(prevProps) { this.connectStreaming(); + + const { dispatch, features } = this.props; + + if (features.chats && !prevProps.features.chats) { + dispatch(fetchChats()); + } } componentWillUnmount() {