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/56a34b5ea6a1ad401ee4cfe74e1acea54fc02ee5/NzbDrone.Core/IndexerSearch/SeasonSearchCommand.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Core/IndexerSearch/SeasonSearchCommand.cs

10 lines
226 B

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.IndexerSearch
{
public class SeasonSearchCommand : ICommand
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
}
}