mirror of
https://github.com/element-hq/synapse.git
synced 2026-09-16 19:12:51 +00:00
fix case where empty string state check is evaulated as False
This commit is contained in:
@@ -76,7 +76,8 @@ class ServerNoticesManager(object):
|
||||
"sender": system_mxid,
|
||||
"content": event_content,
|
||||
}
|
||||
if state_key:
|
||||
|
||||
if state_key is not None:
|
||||
event_dict['state_key'] = state_key
|
||||
|
||||
res = yield self._event_creation_handler.create_and_send_nonmember_event(
|
||||
|
||||
Reference in New Issue
Block a user