Fix not being able to directly switch between list timelines in web UI (#10973)

master
Eugen Rochko 5 years ago committed by GitHub
parent 2657765d2a
commit 5bfd802c57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      app/javascript/mastodon/features/list_timeline/index.js

@ -75,6 +75,23 @@ class ListTimeline extends React.PureComponent {
this.disconnect = dispatch(connectListStream(id));
}
componentWillReceiveProps (nextProps) {
const { dispatch } = this.props;
const { id } = nextProps.params;
if (id !== this.props.params.id) {
if (this.disconnect) {
this.disconnect();
this.disconnect = null;
}
dispatch(fetchList(id));
dispatch(expandListTimeline(id));
this.disconnect = dispatch(connectListStream(id));
}
}
componentWillUnmount () {
if (this.disconnect) {
this.disconnect();

Loading…
Cancel
Save