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

fix case where empty string state check is evaulated as False

This commit is contained in:
Neil Johnson 2018-08-16 11:10:19 +01:00
parent 8cfad2e686
commit c055c91655

View file

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