1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Fixed: Don't use staging API for Nightly, It's Down

This commit is contained in:
Qstick
2020-06-20 01:13:52 -04:00
parent e973701f1c
commit e3bb4d9b59
2 changed files with 4 additions and 11 deletions
@@ -31,14 +31,7 @@ namespace NzbDrone.Core.MetadataSource.RadarrAPI
{
_httpClient = httpClient;
if (configFile.Branch == "nightly")
{
APIURL = "https://staging.api.radarr.video";
}
else
{
APIURL = "https://api.radarr.video/v2";
}
APIURL = "https://api.radarr.video/v2";
RadarrAPI = new HttpRequestBuilder(APIURL+"/{route}/{action}")
.CreateFactory();