Oops, actually specify the user id

pull/759/head
David Baker 2016-04-29 19:27:03 +01:00
parent 60f44c098d
commit 8f99cd5996
1 changed files with 3 additions and 1 deletions

View File

@ -223,7 +223,9 @@ class EventPushActionsStore(SQLBaseStore):
"SELECT ep.room_id, MAX(e.received_ts)"
" FROM event_push_actions AS ep"
" JOIN events e ON ep.room_id = e.room_id AND ep.event_id = e.event_id"
" GROUP BY ep.room_id"
" WHERE ep.user_id = ?"
" GROUP BY ep.room_id",
(user_id,)
)
return txn.fetchall()
result = yield self.runInteraction(