0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-02 01:18:25 +02:00

Use .get - it's much shorter

This commit is contained in:
David Baker 2017-09-18 15:50:26 +01:00
parent a2562f9d74
commit b393f5db51

View file

@ -244,7 +244,7 @@ class HttpPusher(object):
@defer.inlineCallbacks
def _build_notification_dict(self, event, tweaks, badge):
if 'format' in self.data and self.data['format'] == 'event_id_only':
if self.data.get('format') == 'event_id_only':
d = {
'notification': {
'event_id': event.event_id,