Merge pull request #1080 from matrix-org/dbkr/fix_notifications_api_with_from

Fix /notifications API when used with `from` param
This commit is contained in:
David Baker 2016-09-08 17:35:35 +01:00 committed by GitHub
commit c3276aef25

View File

@ -342,7 +342,7 @@ class EventPushActionsStore(SQLBaseStore):
def f(txn):
before_clause = ""
if before:
before_clause = "AND stream_ordering < ?"
before_clause = "AND epa.stream_ordering < ?"
args = [user_id, before, limit]
else:
args = [user_id, limit]