Skip to content

Commit

Permalink
fix(oauth): 🐛 Fixed an issue where on occasions the Plex OAuth wouldn…
Browse files Browse the repository at this point in the history
…'t work
  • Loading branch information
tidusjar committed Oct 11, 2021
1 parent 6fdeeea commit ce1ed01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ombi.Api.Plex/PlexApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public async Task<OAuthContainer> GetPin(int pinId)

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);
Expand Down

0 comments on commit ce1ed01

Please sign in to comment.