mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-20 11:44:07 -04:00
Mark remote device list updates as already handled (#12557)
This commit is contained in:
parent
6d89f1239c
commit
f59e3f4c90
4 changed files with 7 additions and 4 deletions
|
@ -505,8 +505,9 @@ class DeviceHandler(DeviceWorkerHandler):
|
|||
"device_list_key", position, users={user_id}, rooms=room_ids
|
||||
)
|
||||
|
||||
# We may need to do some processing asynchronously.
|
||||
self._handle_new_device_update_async()
|
||||
# We may need to do some processing asynchronously for local user IDs.
|
||||
if self.hs.is_mine_id(user_id):
|
||||
self._handle_new_device_update_async()
|
||||
|
||||
async def notify_user_signature_update(
|
||||
self, from_user_id: str, user_ids: List[str]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue