diff options
author | David Baker <dave@matrix.org> | 2018-06-04 12:01:13 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-06-04 12:01:13 +0100 |
commit | e44150a6de841dc56a108b7dadaad7ea2c597ae2 (patch) | |
tree | 8fe6387dad840bacca8ab18f287a9573c46be885 | |
parent | docstring (diff) | |
download | synapse-e44150a6de841dc56a108b7dadaad7ea2c597ae2.tar.xz |
Missing yield
-rw-r--r-- | synapse/handlers/auth.py | 2 |
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, |