Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/f826890d2b537679cf08f936c99c64a836b384ff/NzbDrone.Core/Update/Commands/ApplicationUpdateCommand.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Core/Update/Commands/ApplicationUpdateCommand.cs

15 lines
293 B

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Update.Commands
{
public class ApplicationUpdateCommand : Command
{
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}