diff --git a/src/js/views/Artist.js b/src/js/views/Artist.js index 0a831ca4..0cf0f851 100755 --- a/src/js/views/Artist.js +++ b/src/js/views/Artist.js @@ -216,8 +216,9 @@ class Artist extends React.Component{ if (this.props.artist){ var is_spotify = (scheme == 'spotify') - if (is_spotify){ - var uris_to_play = (this.props.artist.tracks ? helpers.arrayOf('uri', this.props.artist.tracks) : []) + + if (this.props.artist.tracks_uris && this.props.artist.tracks_uris.length > 0){ + var uris_to_play = this.props.artist.tracks_uris } else { var uris_to_play = this.props.artist.albums_uris }