summary refs log tree commit diff
path: root/synapse/storage/room.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-09-02 12:11:52 +0100
committerErik Johnston <erik@matrix.org>2014-09-02 12:12:14 +0100
commit4b8244fbf85df081e3abfa7a8e8754b66d671f49 (patch)
tree7f4990fb341949eb4f081000c3c7c077ceb51fd9 /synapse/storage/room.py
parentWhoops: Put /events parameters object in the right part of the api tree. (diff)
downloadsynapse-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.py2
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,
         )