summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2016-08-18 15:53:01 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2016-08-18 15:53:01 +0100
commitf3afd6ef1a44ef8b87a3f7257a5e42e69c75523e (patch)
tree874e29441a10e962f0c79679d1b0f45bc1883620
parentLog a warning if an AS yields an invalid 3PU lookup result (diff)
downloadsynapse-f3afd6ef1a44ef8b87a3f7257a5e42e69c75523e.tar.xz
Remove TODO note about request fields being strings - they're always strings
-rw-r--r--synapse/rest/client/v2_alpha/thirdparty.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/rest/client/v2_alpha/thirdparty.py b/synapse/rest/client/v2_alpha/thirdparty.py
index 4b2a93f1bb..bce104c545 100644
--- a/synapse/rest/client/v2_alpha/thirdparty.py
+++ b/synapse/rest/client/v2_alpha/thirdparty.py
@@ -38,8 +38,6 @@ class ThirdPartyUserServlet(RestServlet):
         fields = request.args
         del fields["access_token"]
 
-        # TODO(paul): Some type checking on the request args might be nice
-        #   They should probably all be strings
         results = yield self.appservice_handler.query_3pu(protocol, fields)
 
         defer.returnValue((200, results))