Compare commits

...

1 Commits

Author SHA1 Message Date
dgtlmoon
d07ca81d26 Skip empty notification URLs from being processed 2024-01-29 12:57:58 +01:00

View File

@@ -152,6 +152,10 @@ def process_notification(n_object, datastore):
with apprise.LogCapture(level=apprise.logging.DEBUG) as logs:
for url in n_object['notification_urls']:
url = url.strip()
if not url:
logger.warning(f"Process Notification: skipping empty notification URL.")
continue
logger.info(">> Process Notification: AppRise notifying {}".format(url))
url = jinja2_env.from_string(url).render(**notification_parameters)