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

15 lines
324 B

using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("SceneMappings")]
[PrimaryKey("CleanTitle", autoIncrement = false)]
public class SceneMapping
{
public string CleanTitle { get; set; }
public int SeriesId { get; set; }
public string SceneName { get; set; }
}
}