From 13ce3fc6da70ecd984bd0ecc44a14757c65676ff Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 2 Jun 2021 22:09:01 -0400 Subject: [PATCH] Fixed: Use normal URL for Trakt Oauth per new docs --- src/NzbDrone.Core/Notifications/Trakt/TraktProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Trakt/TraktProxy.cs b/src/NzbDrone.Core/Notifications/Trakt/TraktProxy.cs index fb6a64fa3..cf12fbb01 100644 --- a/src/NzbDrone.Core/Notifications/Trakt/TraktProxy.cs +++ b/src/NzbDrone.Core/Notifications/Trakt/TraktProxy.cs @@ -19,7 +19,7 @@ namespace NzbDrone.Core.Notifications.Trakt public class TraktProxy : ITraktProxy { private const string URL = "https://api.trakt.tv"; - private const string OAuthUrl = "https://api.trakt.tv/oauth/authorize"; + private const string OAuthUrl = "https://trakt.tv/oauth/authorize"; private const string RedirectUri = "https://auth.servarr.com/v1/trakt/auth"; private const string RenewUri = "https://auth.servarr.com/v1/trakt/renew"; private const string ClientId = "64508a8bf370cee550dde4806469922fd7cd70afb2d5690e3ee7f75ae784b70e";