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

16 lines
387 B

using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model
{
public class MisnamedEpisodeModel
{
public int EpisodeFileId { get; set; }
public int SeriesId { get; set; }
public string SeriesTitle { get; set; }
public string CurrentName { get; set; }
public string ProperName { get; set; }
}
}