Skip to content

Commit

Permalink
PUT method for SeekPlayback (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinian authored and JohnnyCrazy committed Oct 27, 2017
1 parent dcf4eef commit fddeb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SpotifyAPI/Web/SpotifyWebAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1974,7 +1974,7 @@ public ErrorResponse SkipPlaybackToPrevious(string deviceId = "")
/// <returns></returns>
public ErrorResponse SeekPlayback(int positionMs, string deviceId = "")
{
return UploadData<ErrorResponse>(_builder.SeekPlayback(positionMs, deviceId), string.Empty);
return UploadData<ErrorResponse>(_builder.SeekPlayback(positionMs, deviceId), string.Empty, "PUT");
}

/// <summary>
Expand Down

0 comments on commit fddeb07

Please sign in to comment.