Fix TokenSwapAuth html response actually returning text/plain instead of html (#335)

This commit is contained in:
Dan Spiteri 2019-04-14 21:50:26 +02:00 committed by Jonas Dellinger
parent ee8af2510a
commit 100c15699c

View File

@ -211,7 +211,7 @@ namespace SpotifyAPI.Web.Auth
Code = code,
Error = error
}));
return this.StringResponseAsync(((TokenSwapAuth)auth).HtmlResponse);
return this.HtmlResponseAsync(((TokenSwapAuth)auth).HtmlResponse);
}
}
}