Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/634cc32ad85d8bcb0fbcb813ca4f4993c6ced0c6/NzbDrone.Core/Indexers/RssSyncCommand.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Core/Indexers/RssSyncCommand.cs

17 lines
278 B

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Indexers
{
12 years ago
public class RssSyncCommand : Command
{
12 years ago
public override bool SendUpdatesToClient
{
12 years ago
get
{
return true;
}
}
12 years ago
}
}