Browse Source

OpsGenie: Set title to body if title not set (#688)

pull/698/head
Kenton Parton 2 years ago committed by GitHub
parent
commit
44887e9c1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apprise/plugins/NotifyOpsgenie.py

2
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()

Loading…
Cancel
Save