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/2fd12636195451a98481c0d486b7edee24aeeaae/NzbDrone.Services/NzbDrone.Services.Service/Repository/SceneMapping.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

17 lines
418 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Services.PetaPoco;
namespace NzbDrone.Services.Service.Repository
{
[TableName("SceneMappings")]
[PrimaryKey("CleanTitle", autoIncrement = false)]
public class SceneMapping
{
public string CleanTitle { get; set; }
public int Id { get; set; }
public string Title { get; set; }
}
}