mirror of
https://github.com/Radarr/Radarr
synced 2025-12-31 04:34:36 +01:00
Fixed: Stale formats score after changing quality profile for movies
This commit is contained in:
parent
4ae382cea7
commit
fa19f45171
3 changed files with 4 additions and 2 deletions
|
|
@ -202,6 +202,8 @@ class SignalRConnector extends Component {
|
|||
|
||||
if (action === 'updated') {
|
||||
this.props.dispatchUpdateItem({ section, ...body.resource });
|
||||
|
||||
repopulatePage('movieUpdated');
|
||||
} else if (action === 'deleted') {
|
||||
this.props.dispatchRemoveItem({ section, id: body.resource.id });
|
||||
}
|
||||
|
|
|
|||
|
|
@ -227,7 +227,7 @@ class MovieDetailsConnector extends Component {
|
|||
// Lifecycle
|
||||
|
||||
componentDidMount() {
|
||||
registerPagePopulator(this.populate);
|
||||
registerPagePopulator(this.populate, ['movieUpdated']);
|
||||
this.populate();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class CutoffUnmetConnector extends Component {
|
|||
gotoCutoffUnmetFirstPage
|
||||
} = this.props;
|
||||
|
||||
registerPagePopulator(this.repopulate, ['movieFileUpdated', 'movieFileDeleted']);
|
||||
registerPagePopulator(this.repopulate, ['movieUpdated', 'movieFileUpdated', 'movieFileDeleted']);
|
||||
|
||||
if (useCurrentPage) {
|
||||
fetchCutoffUnmet();
|
||||
|
|
|
|||
Loading…
Reference in a new issue