Fixed: Page header search box uses incorrect artist link

pull/6/head
Qstick 7 years ago
parent 960330a004
commit 9374461d97

@ -78,7 +78,7 @@ class ArtistSearchInput extends Component {
goToArtist(artist) { goToArtist(artist) {
this.setState({ value: '' }); this.setState({ value: '' });
this.props.onGoToArtist(artist.nameSlug); this.props.onGoToArtist(artist.foreignArtistId);
} }
reset() { reset() {

@ -18,8 +18,8 @@ function createMapStateToProps() {
function createMapDispatchToProps(dispatch, props) { function createMapDispatchToProps(dispatch, props) {
return { return {
onGoToArtist(nameSlug) { onGoToArtist(foreignArtistId) {
dispatch(push(`${window.Sonarr.urlBase}/artist/${nameSlug}`)); dispatch(push(`${window.Sonarr.urlBase}/artist/${foreignArtistId}`));
}, },
onGoToAddNewArtist(query) { onGoToAddNewArtist(query) {

Loading…
Cancel
Save