summary refs log tree commit diff
path: root/synapse/handlers/auth.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2018-06-04 12:01:13 +0100
committerDavid Baker <dave@matrix.org>2018-06-04 12:01:13 +0100
commite44150a6de841dc56a108b7dadaad7ea2c597ae2 (patch)
tree8fe6387dad840bacca8ab18f287a9573c46be885 /synapse/handlers/auth.py
parentdocstring (diff)
downloadsynapse-e44150a6de841dc56a108b7dadaad7ea2c597ae2.tar.xz
Missing yield
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r--synapse/handlers/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py
index 512c31185d..c058b7cabb 100644
--- a/synapse/handlers/auth.py
+++ b/synapse/handlers/auth.py
@@ -826,7 +826,7 @@ class AuthHandler(BaseHandler):
             address = address.lower()
 
         identity_handler = self.hs.get_handlers().identity_handler
-        identity_handler.unbind_threepid(
+        yield identity_handler.unbind_threepid(
             user_id,
             {
                 'medium': medium,