summary refs log tree commit diff
path: root/synapse/storage/room.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-10-29 12:47:20 +0000
committerGitHub <noreply@github.com>2018-10-29 12:47:20 +0000
commitbf33eed60977223e718ded80e5031fa5f08c2442 (patch)
tree225c053f63ce92495772dad850c8501292ee1ca5 /synapse/storage/room.py
parentMake the replication logger quieter (#4108) (diff)
parentoptimise state copying (diff)
downloadsynapse-bf33eed60977223e718ded80e5031fa5f08c2442.tar.xz
Merge pull request #4091 from matrix-org/rav/room_version_upgrades
Room version upgrade support
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 61013b8919..41c65e112a 100644
--- a/synapse/storage/room.py
+++ b/synapse/storage/room.py
@@ -47,7 +47,7 @@ class RoomWorkerStore(SQLBaseStore):
         Args:
             room_id (str): The ID of the room to retrieve.
         Returns:
-            A namedtuple containing the room information, or an empty list.
+            A dict containing the room information, or None if the room is unknown.
         """
         return self._simple_select_one(
             table="rooms",