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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user