Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/b903f61360c9f5a22fc2bda46065d899ff674766
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
11 deletions
@ -16,7 +16,7 @@ namespace NzbDrone.Core.Notifications.Notifiarr
public class NotifiarrProxy : INotifiarrProxy
{
private const string URL = "https://not fiarr.com";
private const string URL = "https://not i fiarr.com";
private readonly IHttpClient _httpClient ;
private readonly IConfigFileProvider _configFileProvider ;
private readonly Logger _logger ;
@ -30,15 +30,7 @@ namespace NzbDrone.Core.Notifications.Notifiarr
public void SendNotification ( StringDictionary message , NotifiarrSettings settings )
{
try
{
ProcessNotification ( message , settings ) ;
}
catch ( NotifiarrException ex )
{
_logger . Error ( ex , ex . Message ) ;
throw new NotifiarrException ( ex . Message ) ;
}
}
public ValidationFailure Test ( NotifiarrSettings settings )
@ -101,9 +93,9 @@ namespace NzbDrone.Core.Notifications.Notifiarr
case 523 :
case 524 :
_logger . Error ( ex , "Cloudflare Related HTTP Error - Unable to send notification" ) ;
throw new NotifiarrException ( "Cloudflare Related HTTP Error - Unable to send notification", ex ) ;
throw new NotifiarrException ( "Cloudflare Related HTTP Error - Unable to send notification", ex ) ;
default :
_logger . Error ( ex , "Unknown HTTP Error - Unable to send notification") ;
_logger . Error ( ex , "Unknown HTTP Error - Unable to send notification") ;
throw new NotifiarrException ( "Unknown HTTP Error - Unable to send notification" , ex ) ;
}
}