diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-03 16:41:41 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-04 11:52:33 +0100 |
commit | b2a25ba23d160aef86363245381cf0a4dc3dccec (patch) | |
tree | c8f4be200ec4eb68b39b2d9fe65e52de3540d131 | |
parent | lint (diff) | |
download | synapse-b2a25ba23d160aef86363245381cf0a4dc3dccec.tar.xz |
Make it actually work
-rw-r--r-- | synapse/handlers/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index b7b9651fd4..fd258dc58b 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -281,7 +281,7 @@ class RoomCreationHandler(BaseHandler): (EventTypes.Encryption, ""), (EventTypes.ServerACL, ""), (EventTypes.RelatedGroups, ""), - (EventTypes.Widgets, ""), + (EventTypes.Widgets, None), ) old_room_state_ids = yield self.store.get_filtered_current_state_ids( |