diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-06-06 04:11:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 09:11:07 +0100 |
commit | f880e64b11bd03d1ebd710b34b541d5b2e044baa (patch) | |
tree | 24abc530d6210279b8bd23986aa35b8df3820b3d /synapse/events | |
parent | Some house keeping on `maybe_backfill()` functions (#15709) (diff) | |
download | synapse-f880e64b11bd03d1ebd710b34b541d5b2e044baa.tar.xz |
Stabilize support for MSC3952: Intentional mentions. (#15520)
Diffstat (limited to 'synapse/events')
-rw-r--r-- | synapse/events/validator.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/synapse/events/validator.py b/synapse/events/validator.py index 47203209db..9278f1a1aa 100644 --- a/synapse/events/validator.py +++ b/synapse/events/validator.py @@ -134,13 +134,8 @@ class EventValidator: ) # If the event contains a mentions key, validate it. - if ( - EventContentFields.MSC3952_MENTIONS in event.content - and config.experimental.msc3952_intentional_mentions - ): - validate_json_object( - event.content[EventContentFields.MSC3952_MENTIONS], Mentions - ) + if EventContentFields.MENTIONS in event.content: + validate_json_object(event.content[EventContentFields.MENTIONS], Mentions) def _validate_retention(self, event: EventBase) -> None: """Checks that an event that defines the retention policy for a room respects the |