Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
* development:
  Spotify.Playlist.add_tracks should be a POST request
  • Loading branch information
jsncmgs1 committed Sep 25, 2016
2 parents f02b46c + e54dd4f commit 0b3ee37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/spotify/playlist.ex
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ defmodule Spotify.Playlist do
"""
def add_tracks(conn, user_id, playlist_id, params \\ []) do
url = add_tracks_url(user_id, playlist_id, params)
conn |> Client.put(url) |> handle_response
conn |> Client.post(url) |> handle_response
end

@doc"""
Expand Down

0 comments on commit 0b3ee37

Please sign in to comment.