summary refs log tree commit diff
path: root/synapse/app
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-12-05 15:53:06 +0000
committerErik Johnston <erik@matrix.org>2019-12-05 15:57:28 +0000
commit1a0997bbd5f9134b21b1105c6b14e09480f193a9 (patch)
tree609c05ed1cf3cedea8927996d239386b5b83047e /synapse/app
parentStronger typing in the federation handler (#6480) (diff)
downloadsynapse-1a0997bbd5f9134b21b1105c6b14e09480f193a9.tar.xz
Port rest/v1 to async/await
Diffstat (limited to 'synapse/app')
-rw-r--r--synapse/app/synchrotron.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/synchrotron.py b/synapse/app/synchrotron.py
index b14da09f47..288ee64b42 100644
--- a/synapse/app/synchrotron.py
+++ b/synapse/app/synchrotron.py
@@ -151,7 +151,7 @@ class SynchrotronPresence(object):
 
     def set_state(self, user, state, ignore_status_msg=False):
         # TODO Hows this supposed to work?
-        pass
+        return defer.succeed(None)
 
     get_states = __func__(PresenceHandler.get_states)
     get_state = __func__(PresenceHandler.get_state)