Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/27c57612f4737f8c7704b1ada93209c4f23cab55/NzbDrone.Core/Providers/UpdateXemMappingsCommand.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/Providers/UpdateXemMappingsCommand.cs

14 lines
297 B

using NzbDrone.Core.Messaging.Commands;
12 years ago
namespace NzbDrone.Core.Providers
{
12 years ago
public class UpdateXemMappingsCommand : Command
12 years ago
{
public int? SeriesId { get; set; }
12 years ago
public UpdateXemMappingsCommand(int? seriesId)
{
SeriesId = seriesId;
}
}
}