diff --git a/src/js/views/Playlist.js b/src/js/views/Playlist.js index 72dee045..692175f0 100755 --- a/src/js/views/Playlist.js +++ b/src/js/views/Playlist.js @@ -63,10 +63,12 @@ class Playlist extends React.Component{ this.props.spotifyActions.toggleFollowingPlaylist( this.props.params.uri, 'PUT' ) } + // TODO: Once unfollowing occurs, remove playlist from global playlists list unfollow(){ this.props.spotifyActions.toggleFollowingPlaylist( this.props.params.uri, 'DELETE' ) } + // TODO: Once deletion occurs, remove playlist from global playlists list delete(){ this.props.mopidyActions.deletePlaylist( this.props.params.uri ) } @@ -121,7 +123,7 @@ class Playlist extends React.Component{