Skip to content
Snippets Groups Projects
Commit 4936fc59 authored by Jason Robinson's avatar Jason Robinson
Browse files

Fix get forward extremities query

parent cee4010f
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,7 @@ class EventForwardExtremitiesStore(SQLBaseStore): ...@@ -89,7 +89,7 @@ class EventForwardExtremitiesStore(SQLBaseStore):
SELECT event_id, state_group, depth, received_ts SELECT event_id, state_group, depth, received_ts
FROM event_forward_extremities FROM event_forward_extremities
INNER JOIN event_to_state_groups USING (event_id) INNER JOIN event_to_state_groups USING (event_id)
INNER JOIN events INNER JOIN USING (event_id) INNER JOIN events USING (room_id, event_id)
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