New: Don't treat 400 responses from Notifiarr as errors

Closes #5953
pull/6033/head
Mark McDowall 1 year ago
parent 32e1ae2f64
commit 5eb420bbe1

@ -53,8 +53,10 @@ namespace NzbDrone.Core.Notifications.Notifiarr
_logger.Error("HTTP 401 - API key is invalid");
throw new NotifiarrException("API key is invalid");
case 400:
// 400 responses shouldn't be treated as an actual error because it's a misconfiguration
// between Sonarr and Notifiarr for a specific event, but shouldn't stop all events.
_logger.Error("HTTP 400 - Unable to send notification. Ensure Sonarr Integration is enabled & assigned a channel on Notifiarr");
throw new NotifiarrException("Unable to send notification. Ensure Sonarr Integration is enabled & assigned a channel on Notifiarr");
break;
case 502:
case 503:
case 504:

Loading…
Cancel
Save