mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-25 21:29:24 -05:00
Merge branch 'develop' of github.com:matrix-org/synapse into erikj/bulk_push
This commit is contained in:
commit
d87b87adf7
@ -85,6 +85,12 @@ class RoomMemberHandler(BaseHandler):
|
|||||||
prev_event_ids=prev_event_ids,
|
prev_event_ids=prev_event_ids,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Check if this event matches the previous membership event for the user.
|
||||||
|
duplicate = yield msg_handler.deduplicate_state_event(event, context)
|
||||||
|
if duplicate is not None:
|
||||||
|
# Discard the new event since this membership change is a no-op.
|
||||||
|
return
|
||||||
|
|
||||||
yield msg_handler.handle_new_client_event(
|
yield msg_handler.handle_new_client_event(
|
||||||
requester,
|
requester,
|
||||||
event,
|
event,
|
||||||
|
Loading…
Reference in New Issue
Block a user