Skip to content

Commit 100c156

Browse files
TruDanJohnnyCrazy
authored andcommitted
Fix TokenSwapAuth html response actually returning text/plain instead of html (#335)
1 parent ee8af25 commit 100c156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SpotifyAPI.Web.Auth/TokenSwapAuth.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public Task<bool> GetAuth()
211211
Code = code,
212212
Error = error
213213
}));
214-
return this.StringResponseAsync(((TokenSwapAuth)auth).HtmlResponse);
214+
return this.HtmlResponseAsync(((TokenSwapAuth)auth).HtmlResponse);
215215
}
216216
}
217217
}

0 commit comments

Comments
 (0)