From ce1ed01a5f1a6e99d37a3cf32e53cf5de4f5943b Mon Sep 17 00:00:00 2001 From: tidusjar Date: Mon, 11 Oct 2021 09:45:01 +0100 Subject: [PATCH] fix(oauth): :bug: Fixed an issue where on occasions the Plex OAuth wouldn't work --- src/Ombi.Api.Plex/PlexApi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi.Api.Plex/PlexApi.cs b/src/Ombi.Api.Plex/PlexApi.cs index 77c129cd7..176af31ec 100644 --- a/src/Ombi.Api.Plex/PlexApi.cs +++ b/src/Ombi.Api.Plex/PlexApi.cs @@ -235,7 +235,7 @@ public async Task GetPin(int pinId) public async Task 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);