Merge remote-tracking branch 'origin/develop' into next

This commit is contained in:
Alex Gleason 2021-09-22 11:17:21 -05:00
commit 165b924ce7
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 6 additions and 0 deletions

View File

@ -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() {