mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-19 16:32:24 +01:00
Revert "Ignore notification counts from rooms you've left" (#16981)
This commit is contained in:
parent
274f289a52
commit
ab80b3412e
2 changed files with 3 additions and 16 deletions
|
@ -1 +0,0 @@
|
|||
Fix a bug introduced in v1.100.0 where notifications from rooms you've left would continue to be counted.
|
|
@ -404,11 +404,7 @@ class EventPushActionsWorkerStore(ReceiptsWorkerStore, StreamWorkerStore, SQLBas
|
|||
SELECT e.room_id, notif_count, e.stream_ordering, e.thread_id, last_receipt_stream_ordering,
|
||||
ev.stream_ordering AS receipt_stream_ordering
|
||||
FROM event_push_summary AS e
|
||||
INNER JOIN local_current_membership AS lcm ON (
|
||||
e.user_id = lcm.user_id
|
||||
AND e.room_id = lcm.room_id
|
||||
AND lcm.membership = 'join'
|
||||
)
|
||||
INNER JOIN local_current_membership USING (user_id, room_id)
|
||||
LEFT JOIN receipts_linearized AS r ON (
|
||||
e.user_id = r.user_id
|
||||
AND e.room_id = r.room_id
|
||||
|
@ -476,11 +472,7 @@ class EventPushActionsWorkerStore(ReceiptsWorkerStore, StreamWorkerStore, SQLBas
|
|||
SELECT e.room_id, e.stream_ordering, e.thread_id,
|
||||
ev.stream_ordering AS receipt_stream_ordering
|
||||
FROM event_push_actions AS e
|
||||
INNER JOIN local_current_membership AS lcm ON (
|
||||
e.user_id = lcm.user_id
|
||||
AND e.room_id = lcm.room_id
|
||||
AND lcm.membership = 'join'
|
||||
)
|
||||
INNER JOIN local_current_membership USING (user_id, room_id)
|
||||
LEFT JOIN receipts_linearized AS r ON (
|
||||
e.user_id = r.user_id
|
||||
AND e.room_id = r.room_id
|
||||
|
@ -522,11 +514,7 @@ class EventPushActionsWorkerStore(ReceiptsWorkerStore, StreamWorkerStore, SQLBas
|
|||
SELECT e.room_id, e.stream_ordering, e.thread_id,
|
||||
ev.stream_ordering AS receipt_stream_ordering
|
||||
FROM event_push_actions AS e
|
||||
INNER JOIN local_current_membership AS lcm ON (
|
||||
e.user_id = lcm.user_id
|
||||
AND e.room_id = lcm.room_id
|
||||
AND lcm.membership = 'join'
|
||||
)
|
||||
INNER JOIN local_current_membership USING (user_id, room_id)
|
||||
LEFT JOIN receipts_linearized AS r ON (
|
||||
e.user_id = r.user_id
|
||||
AND e.room_id = r.room_id
|
||||
|
|
Loading…
Reference in a new issue