Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/529f65339fae34135edb5957c5974de953fbefec/NzbDrone.Core/DataAugmentation/Scene/SceneMapping.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Core/DataAugmentation/Scene/SceneMapping.cs

19 lines
444 B

using Newtonsoft.Json;
12 years ago
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.DataAugmentation.Scene
12 years ago
{
public class SceneMapping : ModelBase
{
[JsonProperty("title")]
public string ParseTerm { get; set; }
[JsonProperty("searchTitle")]
public string SearchTerm { get; set; }
public int TvdbId { get; set; }
[JsonProperty("season")]
12 years ago
public int SeasonNumber { get; set; }
}
}