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

12 lines
236 B

using System;
using System.Collections.Generic;
using System.Web;
namespace NzbDrone.Web.Models
{
public class JobQueueItemModel
{
public string Name { get; set; }
public dynamic Options { get; set; }
}
}