From fddeb072144066dcbabc5a239c5f5853136b6efd Mon Sep 17 00:00:00 2001 From: Ludovic Debost Date: Fri, 27 Oct 2017 17:23:45 +0200 Subject: [PATCH] PUT method for SeekPlayback (#190) --- SpotifyAPI/Web/SpotifyWebAPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpotifyAPI/Web/SpotifyWebAPI.cs b/SpotifyAPI/Web/SpotifyWebAPI.cs index 999545a5..5b99d3ee 100644 --- a/SpotifyAPI/Web/SpotifyWebAPI.cs +++ b/SpotifyAPI/Web/SpotifyWebAPI.cs @@ -1974,7 +1974,7 @@ namespace SpotifyAPI.Web /// public ErrorResponse SeekPlayback(int positionMs, string deviceId = "") { - return UploadData(_builder.SeekPlayback(positionMs, deviceId), string.Empty); + return UploadData(_builder.SeekPlayback(positionMs, deviceId), string.Empty, "PUT"); } ///