mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Ignore empty strings for display names & room names in notifications
This commit is contained in:
parent
e9dfc4cfae
commit
365e007bee
@ -92,9 +92,9 @@ class HttpPusher(Pusher):
|
|||||||
|
|
||||||
if len(ctx['aliases']):
|
if len(ctx['aliases']):
|
||||||
d['notification']['room_alias'] = ctx['aliases'][0]
|
d['notification']['room_alias'] = ctx['aliases'][0]
|
||||||
if 'sender_display_name' in ctx:
|
if 'sender_display_name' in ctx and len(ctx['sender_display_name']) > 0:
|
||||||
d['notification']['sender_display_name'] = ctx['sender_display_name']
|
d['notification']['sender_display_name'] = ctx['sender_display_name']
|
||||||
if 'name' in ctx:
|
if 'name' in ctx and len(ctx['name']) > 0:
|
||||||
d['notification']['room_name'] = ctx['name']
|
d['notification']['room_name'] = ctx['name']
|
||||||
|
|
||||||
defer.returnValue(d)
|
defer.returnValue(d)
|
||||||
|
Loading…
Reference in New Issue
Block a user