Make is_presence_visible always return true as it was thrashing the database.

This commit is contained in:
Erik Johnston 2014-08-22 18:21:21 +01:00
parent b18db63c06
commit 5b058a79cb

View File

@ -142,6 +142,9 @@ class PresenceHandler(BaseHandler):
@defer.inlineCallbacks
def is_presence_visible(self, observer_user, observed_user):
return defer.succeed(True)
# FIXME (erikj): This code path absolutely kills the database.
assert(observed_user.is_mine)
if observer_user == observed_user: