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/7a1301610a9539a22ec55742472c8df73998bd6b/NzbDrone.Core/Repository/IndexerDefinition.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/Repository/IndexerDefinition.cs

18 lines
380 B

using System;
using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("IndexerDefinitions")]
[PrimaryKey("Id", autoIncrement = true)]
public class IndexerDefinition
{
public int Id { get; set; }
public Boolean Enable { get; set; }
public String IndexProviderType { get; set; }
public String Name { get; set; }
}
}