diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-02 12:11:52 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-02 12:12:14 +0100 |
commit | 4b8244fbf85df081e3abfa7a8e8754b66d671f49 (patch) | |
tree | 7f4990fb341949eb4f081000c3c7c077ceb51fd9 /synapse/storage/room.py | |
parent | Whoops: Put /events parameters object in the right part of the api tree. (diff) | |
download | synapse-4b8244fbf85df081e3abfa7a8e8754b66d671f49.tar.xz |
Fix bug where we didn't correctly store the ops power levels event.
Diffstat (limited to 'synapse/storage/room.py')
-rw-r--r-- | synapse/storage/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/room.py b/synapse/storage/room.py index 3ca07f4350..01ae190316 100644 --- a/synapse/storage/room.py +++ b/synapse/storage/room.py @@ -328,7 +328,7 @@ class RoomStore(SQLBaseStore): self._simple_insert_txn( txn, - "room_send_event_levels", + "room_ops_levels", content, ) |