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

12 lines
274 B

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Indexers
{
public class IndexerDefinition : ModelBase
{
public Boolean Enable { get; set; }
public String Name { get; set; }
public String Settings { get; set; }
}
}