mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 12:23:48 +01:00
Oops, missing comma
This commit is contained in:
parent
ccffb0965d
commit
c2da3406fc
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ class EventPushActionsStore(SQLBaseStore):
|
||||||
txn.execute(
|
txn.execute(
|
||||||
"DELETE FROM event_push_actions "
|
"DELETE FROM event_push_actions "
|
||||||
" WHERE user_id = ? AND room_id = ? AND "
|
" WHERE user_id = ? AND room_id = ? AND "
|
||||||
" topological_ordering < ? AND stream_ordering < ?"
|
" topological_ordering < ? AND stream_ordering < ?",
|
||||||
(user_id, room_id, topological_ordering, self.stream_ordering_month_ago)
|
(user_id, room_id, topological_ordering, self.stream_ordering_month_ago)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue