parent
32e1ae2f64
commit
5eb420bbe1
|
@ -53,8 +53,10 @@ namespace NzbDrone.Core.Notifications.Notifiarr
|
||||||
_logger.Error("HTTP 401 - API key is invalid");
|
_logger.Error("HTTP 401 - API key is invalid");
|
||||||
throw new NotifiarrException("API key is invalid");
|
throw new NotifiarrException("API key is invalid");
|
||||||
case 400:
|
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");
|
_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 502:
|
||||||
case 503:
|
case 503:
|
||||||
case 504:
|
case 504:
|
||||||
|
|
Loading…
Reference in New Issue