fix(oauth): 🐛 Fixed an issue where on occasions the Plex OAuth wouldn't work

pull/4341/head
tidusjar 3 years ago
parent 6fdeeea87b
commit ce1ed01a5f

@ -235,7 +235,7 @@ namespace Ombi.Api.Plex
public async Task<Uri> GetOAuthUrl(string code, string applicationUrl)
{
var request = new Request("auth#", "https://app.plex.tv", HttpMethod.Get);
var request = new Request("auth/#", "https://app.plex.tv", HttpMethod.Get);
await AddHeaders(request);
request.AddQueryString("code", code);

Loading…
Cancel
Save