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/298d6fe3bf3d457c398b61b2682b789ed73313f6/NzbDrone.Core/Notifications/Pushover/PushoverPriority.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Core/Notifications/Pushover/PushoverPriority.cs

11 lines
179 B

namespace NzbDrone.Core.Notifications.Pushover
{
public enum PushoverPriority
{
Quiet = -1,
Normal = 0,
High = 1,
Emergency = 2
}
}