Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
reword for vdh
Browse files Browse the repository at this point in the history
  • Loading branch information
ara4n authored and richvdh committed Feb 9, 2020
1 parent 14c8503 commit 59abcd0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions synapse/visibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ def allowed(event):
if not event.is_state() and event.sender in ignore_list:
return None

# Until MSC2261 has landed we can't redact malicious aliases, so for
# now we temporarily filter out m.room.aliases entirely, until we bump
# to a room version which lets us manage them properly.
# Until MSC2261 has landed we can't redact malicious alias events, so for
# now we temporarily filter out m.room.aliases entirely to mitigate
# abuse, while we spec a better solution to advertising aliases
# on rooms.
if event.type == EventTypes.Aliases:
return None

Expand Down

0 comments on commit 59abcd0

Please sign in to comment.