mirror of
https://github.com/Radarr/Radarr
synced 2024-12-30 20:05:41 +00:00
Fixed: Single Item Exclude Broken on Discovery View
This commit is contained in:
parent
b25e42c456
commit
b2b0efe4ed
1 changed files with 1 additions and 5 deletions
|
@ -14,11 +14,7 @@ class ExcludeMovieModalContentConnector extends Component {
|
|||
// Listeners
|
||||
|
||||
onExcludePress = () => {
|
||||
this.props.addNetImportExclusions([{
|
||||
tmdbId: this.props.tmdbId,
|
||||
movieTitle: this.props.title,
|
||||
movieYear: this.props.year
|
||||
}]);
|
||||
this.props.addNetImportExclusions({ ids: [this.props.tmdbId] });
|
||||
|
||||
this.props.onModalClose(true);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue