Fix SQL to supply arguments in the same order

pull/966/head
Mark Haines 2016-07-29 09:57:13 +01:00
parent 0a7d3cd00f
commit 8dad08a950
1 changed files with 1 additions and 1 deletions

View File

@ -272,8 +272,8 @@ class EventPushActionsStore(SQLBaseStore):
" AND ep.stream_ordering > rl.stream_ordering"
" )"
" )"
" AND ep.stream_ordering > ?"
" AND ep.user_id = ?"
" AND ep.stream_ordering > ?"
" AND ep.stream_ordering <= ?"
" ORDER BY ep.stream_ordering DESC LIMIT ?"
)