Skip to content
Snippets Groups Projects
Commit 503e4d3d authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix broken SQL

parent 00718ae7
No related branches found
No related tags found
No related merge requests found
...@@ -190,7 +190,7 @@ class RoomStore(SQLBaseStore): ...@@ -190,7 +190,7 @@ class RoomStore(SQLBaseStore):
def get_room_name_and_aliases(self, room_id): def get_room_name_and_aliases(self, room_id):
def f(txn): def f(txn):
sql = ( sql = (
"SELECT event_id FROM events current_state_events " "SELECT event_id FROM current_state_events "
"WHERE room_id = ? " "WHERE room_id = ? "
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment