Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/18910d0720c4896d0b6bbf5d2e7a2f6b1d768fc4/NzbDrone.Core/Notifications/Prowl/ProwlPriority.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Core/Notifications/Prowl/ProwlPriority.cs

12 lines
193 B

namespace NzbDrone.Core.Notifications.Prowl
{
public enum ProwlPriority
{
VeryLow = -2,
Low = -1,
Normal = 0,
High = 1,
Emergency = 2
}
}