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

pull/698/head
Kenton Parton 2022-10-09 14:59:38 +01:00 committed by GitHub
parent 1228b3884e
commit 44887e9c1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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