mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-17 15:31:19 +01:00
Fix /notifications API when used with from
param
This commit is contained in:
parent
3c320c006c
commit
c5b49eb7ca
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ class EventPushActionsStore(SQLBaseStore):
|
||||||
def f(txn):
|
def f(txn):
|
||||||
before_clause = ""
|
before_clause = ""
|
||||||
if before:
|
if before:
|
||||||
before_clause = "AND stream_ordering < ?"
|
before_clause = "AND epa.stream_ordering < ?"
|
||||||
args = [user_id, before, limit]
|
args = [user_id, before, limit]
|
||||||
else:
|
else:
|
||||||
args = [user_id, limit]
|
args = [user_id, limit]
|
||||||
|
|
Loading…
Reference in a new issue