Skip to content
Snippets Groups Projects
Commit da146657 authored by Erik Johnston's avatar Erik Johnston
Browse files

Comments

parent a158c36a
No related branches found
No related tags found
No related merge requests found
......@@ -832,8 +832,8 @@ class SyncHandler(object):
@defer.inlineCallbacks
def _have_rooms_changed(self, sync_result_builder):
"""Returns whether any rooms have changed since the sync. Must be an
incremental sync
"""Returns whether there may be any new events that should be sent down
the sync. Returns True if there are.
"""
user_id = sync_result_builder.sync_config.user.to_string()
since_token = sync_result_builder.since_token
......
......@@ -276,6 +276,8 @@ class RoomMemberStore(SQLBaseStore):
@cachedInlineCallbacks(max_entries=500000, iterable=True)
def get_rooms_for_user(self, user_id):
"""Returns a set of room_ids the user is currently joined to
"""
rooms = yield self.get_rooms_for_user_where_membership_is(
user_id, membership_list=[Membership.JOIN],
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment