mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Include the ts the notif was received at
This commit is contained in:
parent
b791a530da
commit
37b7e84620
@ -68,6 +68,7 @@ class NotificationsServlet(RestServlet):
|
|||||||
"room_id": pa["room_id"],
|
"room_id": pa["room_id"],
|
||||||
"profile_tag": pa["profile_tag"],
|
"profile_tag": pa["profile_tag"],
|
||||||
"actions": pa["actions"],
|
"actions": pa["actions"],
|
||||||
|
"ts": pa["received_ts"],
|
||||||
"event": serialize_event(
|
"event": serialize_event(
|
||||||
notif_events[pa["event_id"]],
|
notif_events[pa["event_id"]],
|
||||||
self.clock.time_msec(),
|
self.clock.time_msec(),
|
||||||
|
@ -201,11 +201,13 @@ class EventPushActionsStore(SQLBaseStore):
|
|||||||
else:
|
else:
|
||||||
args = [user_id, limit]
|
args = [user_id, limit]
|
||||||
sql = (
|
sql = (
|
||||||
"SELECT event_id, room_id, stream_ordering, topological_ordering,"
|
"SELECT epa.event_id, epa.room_id,"
|
||||||
" actions, profile_tag"
|
" epa.stream_ordering, epa.topological_ordering,"
|
||||||
" FROM event_push_actions"
|
" epa.actions, epa.profile_tag, e.received_ts"
|
||||||
" WHERE user_id = ? %s"
|
" FROM event_push_actions epa, events e"
|
||||||
" ORDER BY stream_ordering DESC"
|
" WHERE epa.room_id = e.room_id AND epa.event_id = e.event_id"
|
||||||
|
" AND epa.user_id = ? %s"
|
||||||
|
" ORDER BY epa.stream_ordering DESC"
|
||||||
" LIMIT ?"
|
" LIMIT ?"
|
||||||
% (before_clause,)
|
% (before_clause,)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user