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/43fa8a1f660be62dd881de40e58282d26ead17ab/NzbDrone.Web/Models/TvDbSearchResultModel.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Web/Models/TvDbSearchResultModel.cs

14 lines
298 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class TvDbSearchResultModel
{
public int Id { get; set; }
public string Title { get; set; }
public string FirstAired { get; set; }
}
}