forked from GithubBackups/healthchecks
Don't escape HTML in the subject line of notification emails
This commit is contained in:
parent
4a43ed59fc
commit
9d2cf4f008
@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
### Bug Fixes
|
||||
- "Get a single check" API call now supports read-only API keys (#346)
|
||||
- Don't escape HTML in the subject line of notification emails
|
||||
|
||||
## v1.14.0 - 2020-03-23
|
||||
|
||||
|
@ -345,6 +345,14 @@ class NotifyTestCase(BaseTestCase):
|
||||
self.assertEqual(Notification.objects.count(), 0)
|
||||
self.assertEqual(len(mail.outbox), 0)
|
||||
|
||||
def test_email_handles_amperstand(self):
|
||||
self._setup_data("email", "alice@example.org")
|
||||
self.check.name = "Foo & Bar"
|
||||
self.channel.notify(self.check)
|
||||
|
||||
email = mail.outbox[0]
|
||||
self.assertEqual(email.subject, "DOWN | Foo & Bar")
|
||||
|
||||
@patch("hc.api.transports.requests.request")
|
||||
def test_pd(self, mock_post):
|
||||
self._setup_data("pd", "123")
|
||||
|
@ -1,2 +1,2 @@
|
||||
{{ check.status|upper }} | {{ check.name_then_code }}
|
||||
{{ check.status|upper }} | {{ check.name_then_code|safe }}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user