mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 09:42:56 -07:00
fix(oauth): 🐛 Fixed an issue where on occasions the Plex OAuth wouldn't work
This commit is contained in:
parent
6fdeeea87b
commit
ce1ed01a5f
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ namespace Ombi.Api.Plex
|
||||||
|
|
||||||
public async Task<Uri> GetOAuthUrl(string code, string applicationUrl)
|
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);
|
await AddHeaders(request);
|
||||||
|
|
||||||
request.AddQueryString("code", code);
|
request.AddQueryString("code", code);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue