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

Fix query for get_unread_push_actions_for_user_in_range

parent ceeb5b90
No related branches found
No related tags found
No related merge requests found
......@@ -133,9 +133,10 @@ class EventPushActionsStore(SQLBaseStore):
" ep.topological_ordering > rl.topological_ordering"
" OR ("
" ep.topological_ordering = rl.topological_ordering"
" AND ep.stream_ordering > ?"
" AND ep.stream_ordering > rl.stream_ordering"
" )"
" )"
" AND ep.stream_ordering > ?"
" AND ep.user_id = ?"
" AND ep.user_id = rl.user_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