Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/ee7e507cdeab95e36408eace9dd5390a2cd911bf You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: History should reload on MovieDetail Movie Change

pull/2/head
Qstick 6 years ago
parent 162980ccaf
commit ee7e507cde

@ -35,6 +35,20 @@ class MovieHistoryTableContentConnector extends Component {
});
}
componentDidUpdate(prevProps) {
const {
movieId
} = this.props;
// If the id has changed we need to clear the history
if (prevProps.movieId !== movieId) {
this.props.clearMovieHistory();
this.props.fetchMovieHistory({
movieId
});
}
}
componentWillUnmount() {
this.props.clearMovieHistory();
}

Loading…
Cancel
Save