Skip to content

Commit a4c76ec

Browse files
author
Johnny @PC
committed
Fixed usage of wrong WebClient instance
1 parent e370039 commit a4c76ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SpotifyAPI/Web/SpotifyWebClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public async Task<byte[]> UploadRawAsync(string url, string body, string method)
140140
webClient.Proxy = null;
141141
webClient.Encoding = _encoding;
142142
webClient.Headers = _webClient.Headers;
143-
return await _webClient.UploadDataTaskAsync(url, method, _encoding.GetBytes(body));
143+
return await webClient.UploadDataTaskAsync(url, method, _encoding.GetBytes(body));
144144
}
145145
}
146146

0 commit comments

Comments
 (0)