|
|
@ -30,6 +30,8 @@ class Webhooks:
|
|
|
|
response_json = response.json()
|
|
|
|
response_json = response.json()
|
|
|
|
if self.config.trace_mode:
|
|
|
|
if self.config.trace_mode:
|
|
|
|
logger.debug(f"Response: {response_json}")
|
|
|
|
logger.debug(f"Response: {response_json}")
|
|
|
|
|
|
|
|
if "result" in response_json and response_json["result"] == "error" and "details" in response_json and "response" in response_json["details"]:
|
|
|
|
|
|
|
|
raise Failed(f"Notifiarr Error: {response_json['details']['response']}")
|
|
|
|
if response.status_code >= 400 or ("result" in response_json and response_json["result"] == "error"):
|
|
|
|
if response.status_code >= 400 or ("result" in response_json and response_json["result"] == "error"):
|
|
|
|
raise Failed(f"({response.status_code} [{response.reason}]) {response_json}")
|
|
|
|
raise Failed(f"({response.status_code} [{response.reason}]) {response_json}")
|
|
|
|
except JSONDecodeError:
|
|
|
|
except JSONDecodeError:
|
|
|
|