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

12 lines
231 B

using System.Net;
namespace NzbDrone.Common
{
public class WebClientProvider
{
public virtual string DownloadString(string url)
{
return new WebClient().DownloadString(url);
}
}
}