summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-03-23 10:32:10 +0000
committerErik Johnston <erik@matrix.org>2016-03-23 10:32:10 +0000
commitb6507869cdd5da18117dbbd0fbf78f4bdd4391f7 (patch)
tree3fa7ba40019c84e5642e322b86a6eb00c146830c /synapse/push
parentMeasure StateHandler._resolve_events (diff)
downloadsynapse-b6507869cdd5da18117dbbd0fbf78f4bdd4391f7.tar.xz
Make get_invites return RoomsForUser
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/__init__.py b/synapse/push/__init__.py

index 65ef1b68a3..296c4447ec 100644 --- a/synapse/push/__init__.py +++ b/synapse/push/__init__.py
@@ -317,7 +317,7 @@ class Pusher(object): @defer.inlineCallbacks def _get_badge_count(self): invites, joins = yield defer.gatherResults([ - self.store.get_invites_for_user(self.user_id), + self.store.get_invited_rooms_for_user(self.user_id), self.store.get_rooms_for_user(self.user_id), ], consumeErrors=True)