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/5f93cbc83b61b276f424d4a42f97ad35b9cb64c9/NzbDrone.Core/Download/SabQueueItem.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Core/Download/SabQueueItem.cs

18 lines
314 B

using System;
namespace NzbDrone.Core.Download
{
public class QueueItem
{
public decimal Size { get; set; }
public string Title { get; set; }
public decimal SizeLeft { get; set; }
public string Id { get; set; }
public TimeSpan Timeleft { get; set; }
}
}