Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Feb 12, 2019
1 parent 81d2d3f commit c4f6137
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/actions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ function discogsSearch (terms, searchType, dispatchType) {
}

export function albumSearch (terms) {
return discogsSearch(terms, 'albums', 'ALBUM_SEARCH_SUCCESS');
return discogsSearch(terms, 'master', 'ALBUM_SEARCH_SUCCESS');
}

export function artistSearch (terms) {
return discogsSearch(terms, 'artists', 'ARTIST_SEARCH_SUCCESS');
return discogsSearch(terms, 'artist', 'ARTIST_SEARCH_SUCCESS');
}

export function lastFmTrackSearchStart (terms) {
Expand Down

0 comments on commit c4f6137

Please sign in to comment.