From 44887e9c1daf6a78a4bb462b038871754cf9433f Mon Sep 17 00:00:00 2001 From: Kenton Parton Date: Sun, 9 Oct 2022 14:59:38 +0100 Subject: [PATCH] OpsGenie: Set title to body if title not set (#688) --- apprise/plugins/NotifyOpsgenie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apprise/plugins/NotifyOpsgenie.py b/apprise/plugins/NotifyOpsgenie.py index 47e58099..813244cf 100644 --- a/apprise/plugins/NotifyOpsgenie.py +++ b/apprise/plugins/NotifyOpsgenie.py @@ -382,7 +382,7 @@ class NotifyOpsgenie(NotifyBase): has_error = False # Use body if title not set - title_body = body if not title else body + title_body = body if not title else title # Create a copy ouf our details object details = self.details.copy()