diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-06-18 15:00:50 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-06-18 15:00:50 +0100 |
commit | 1ecbb260d038482c5b79c98f28cff988e903e405 (patch) | |
tree | c823b34eae6d77f528633afd86b8d9e6ebf00935 | |
parent | Rename store_room()'s is_public parameter to published; default it from the b... (diff) | |
download | synapse-1ecbb260d038482c5b79c98f28cff988e903e405.tar.xz |
Fix logging description name in get_published_rooms()
-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 a9d07978de..238e046c60 100644 --- a/synapse/storage/room.py +++ b/synapse/storage/room.py @@ -145,7 +145,7 @@ class RoomStore(SQLBaseStore): return rows rows = yield self.runInteraction( - "get_rooms", f + "get_published_rooms", f ) ret = [ |