Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/5414dadffcb23ac7002b907797cf73a350254a1f?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed stupid error.

pull/3113/head
Taloth Saldono 9 years ago
parent 5482fa3ae0
commit 5414dadffc

@ -21,12 +21,12 @@ namespace NzbDrone.Common.Security
if (Enum.IsDefined(typeof(SecurityProtocolType), Tls11)) if (Enum.IsDefined(typeof(SecurityProtocolType), Tls11))
{ {
ServicePointManager.SecurityProtocol |= Tls11; protocol |= Tls11;
} }
if (Enum.IsDefined(typeof(SecurityProtocolType), Tls12)) if (Enum.IsDefined(typeof(SecurityProtocolType), Tls12))
{ {
ServicePointManager.SecurityProtocol |= Tls12; protocol |= Tls12;
} }
ServicePointManager.SecurityProtocol = protocol; ServicePointManager.SecurityProtocol = protocol;

Loading…
Cancel
Save