1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-17 21:26:13 -04:00

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

Closes #5953
This commit is contained in:
Mark McDowall
2023-09-17 23:56:17 -07:00
parent 32e1ae2f64
commit 5eb420bbe1

View File

@@ -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: