Skip to content

Commit

Permalink
plugins/spotify_source: recommendations by track name and artist name (
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrubio committed May 1, 2020
1 parent dd000b5 commit 05d18ab
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions plugins/spotify_source/src/spfysrcprc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1409,6 +1409,16 @@ enqueue_playlist_items (spfysrc_prc_t * ap_prc)
rc = tiz_spotify_play_recommendations_by_artist_id (ap_prc->p_spfy_web_, p_playlist);
}
break;
case OMX_AUDIO_SpotifyPlaylistTypeRecommendationsByTrack:
{
rc = tiz_spotify_play_recommendations_by_track (ap_prc->p_spfy_web_, p_playlist);
}
break;
case OMX_AUDIO_SpotifyPlaylistTypeRecommendationsByArtist:
{
rc = tiz_spotify_play_recommendations_by_artist (ap_prc->p_spfy_web_, p_playlist);
}
break;
case OMX_AUDIO_SpotifyPlaylistTypeRecommendationsByGenre:
{
rc = tiz_spotify_play_recommendations_by_genre (ap_prc->p_spfy_web_, p_playlist);
Expand Down

0 comments on commit 05d18ab

Please sign in to comment.