From 6ca4ccea379a918a2f28b5de252158065458617d Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Tue, 16 Nov 2021 11:44:03 -0500 Subject: [PATCH] fix for multiple webhook notifications --- modules/webhooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/webhooks.py b/modules/webhooks.py index 98ed735f..a615a5c4 100644 --- a/modules/webhooks.py +++ b/modules/webhooks.py @@ -17,7 +17,7 @@ class Webhooks: if self.config.trace_mode: logger.debug("") logger.debug(f"JSON: {json}") - for webhook in webhooks: + for webhook in list(set(webhooks)): if self.config.trace_mode: logger.debug(f"Webhook: {webhook}") if webhook == "notifiarr":