Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/e10a5ca213d97bf734ca7d6ce7b6fc37f5c093cb You should set ROOT_URL correctly, otherwise the web may not work correctly.

NzbDroneException now has inner exception

pull/6/head
Mark McDowall 12 years ago
parent 18fe8ecfea
commit e10a5ca213

@ -15,5 +15,16 @@ namespace NzbDrone.Common.Exceptions
{
}
protected NzbDroneException(string message, Exception innerException, params object[] args)
: base(string.Format(message, args), innerException)
{
}
protected NzbDroneException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}

@ -6,7 +6,7 @@ using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Configuration
{
public class InvalidConfigFileException : Exception
public class InvalidConfigFileException : NzbDroneException
{
public InvalidConfigFileException(string message, Exception innerException) : base(message, innerException)
{

Loading…
Cancel
Save