0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-04 07:29:04 +02:00

Fix 3PID invite exchange

This commit is contained in:
Brendan Abolivier 2019-11-19 14:07:39 +00:00
parent 97b863fe32
commit a6fc6754f8
No known key found for this signature in database
GPG key ID: 1E015C145F1916CD

View file

@ -2569,7 +2569,7 @@ class FederationHandler(BaseHandler):
event, context = yield self.event_creation_handler.create_new_client_event(
builder=builder
)
EventValidator().validate_new(event)
EventValidator().validate_new(event, self.config)
return (event, context)
@defer.inlineCallbacks