Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/fde38938b887b2dfebd249b587ee6fcd6251fc54 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed: HttpClient would fail with an unrelated exception

pull/4/head
Keivan Beigi 11 years ago
parent 73963011ee
commit fde38938b8

@ -80,6 +80,11 @@ namespace NzbDrone.Common.Http
catch (WebException e)
{
httpWebResponse = (HttpWebResponse)e.Response;
if (httpWebResponse == null)
{
throw;
}
}
Byte[] data = null;

Loading…
Cancel
Save