summary refs log tree commit diff
path: root/synapse/handlers/federation.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-09-22 11:59:46 +0100
committerErik Johnston <erik@matrix.org>2016-09-22 11:59:46 +0100
commit2e9ee3096907573773d3f0e4ff22dd014b8253c8 (patch)
tree897660da8a4440b4a667e3e202a96829f85df546 /synapse/handlers/federation.py
parentShuffle things around to make unit tests work (diff)
downloadsynapse-2e9ee3096907573773d3f0e4ff22dd014b8253c8.tar.xz
Add comments
Diffstat (limited to 'synapse/handlers/federation.py')
-rw-r--r--synapse/handlers/federation.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py
index a393263e1e..2d801bad47 100644
--- a/synapse/handlers/federation.py
+++ b/synapse/handlers/federation.py
@@ -1930,6 +1930,9 @@ class FederationHandler(BaseHandler):
                 "Could not find invite event for third_party_invite: %r",
                 event_dict
             )
+            # We don't discard here as this is not the appropriate place to do
+            # auth checks. If we need the invite and don't have it then the
+            # auth check code will explode appropriately.
 
         builder = self.event_builder_factory.new(event_dict)
         EventValidator().validate_new(builder)