Skip to content
Snippets Groups Projects
Commit 104844c1 authored by Andrew Morgan's avatar Andrew Morgan
Browse files

Add explanatory comment

parent 74064775
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,8 @@ class DeviceWorkerHandler(BaseHandler):
)
tracked_users = set(users_who_share_room)
# always tell the user about their own devices
# Always tell the user about their own devices
tracked_users.add(user_id)
changed = yield self.store.get_users_whose_devices_changed(
......
......@@ -1144,6 +1144,8 @@ class SyncHandler(object):
)
tracked_users = set(users_who_share_room)
# Always tell the user about their own devices
tracked_users.add(user_id)
# Step 1a, check for changes in devices of users we share a room with
......
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