We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 505c5df commit f560c22Copy full SHA for f560c22
synapse/handlers/profile.py
@@ -398,6 +398,10 @@ async def _update_join_states(
398
if not self.hs.is_mine(target_user):
399
return
400
401
+ # T2B: don't update membership events for discord users
402
+ if target_user.to_string().startswith("@_discord"):
403
+ return
404
+
405
await self.request_ratelimiter.ratelimit(requester)
406
407
# Do not actually update the room state for shadow-banned users.
0 commit comments