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

reject all updates if in linux.

pull/4/head
kay.one 12 years ago
parent 7d6e14d342
commit d5e5d6de29

@ -10,7 +10,6 @@ namespace NzbDrone.Core.Update
UpdatePackage AvailableUpdate();
}
public class CheckUpdateService : ICheckUpdateService
{
private readonly IUpdatePackageProvider _updatePackageProvider;
@ -28,6 +27,8 @@ namespace NzbDrone.Core.Update
public UpdatePackage AvailableUpdate()
{
if (OsInfo.IsLinux) return null;
var latestAvailable = _updatePackageProvider.GetLatestUpdate(_configFileProvider.Branch, BuildInfo.Version);
if (latestAvailable == null)

Loading…
Cancel
Save