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/7f5136120d8e3cd2070f77a370fe1a7d0b493ade/NzbDrone.Core/Qualities/QualityProfileInUseException.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
{
|
|
public class QualityProfileInUseException : NzbDroneException
|
|
{
|
|
public QualityProfileInUseException(int profileId)
|
|
: base("QualityProfile [{0}] is in use.", profileId)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |