From 22b926c284f98b5507583a3a7866da12a9f4bb47 Mon Sep 17 00:00:00 2001
From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Date: Fri, 28 Aug 2020 15:59:28 +0100
Subject: Only return devices with keys from `/federation/v1/user/devices/`
 (#8198)

There's not much point in returning all the others, and some people have a
silly number of devices.
---
 synapse/storage/databases/main/devices.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

(limited to 'synapse')

diff --git a/synapse/storage/databases/main/devices.py b/synapse/storage/databases/main/devices.py
index ecd3f3b310..def96637a2 100644
--- a/synapse/storage/databases/main/devices.py
+++ b/synapse/storage/databases/main/devices.py
@@ -498,9 +498,7 @@ class DeviceWorkerStore(SQLBaseStore):
     ) -> Tuple[int, List[JsonDict]]:
         now_stream_id = self._device_list_id_gen.get_current_token()
 
-        devices = self._get_e2e_device_keys_txn(
-            txn, [(user_id, None)], include_all_devices=True
-        )
+        devices = self._get_e2e_device_keys_txn(txn, [(user_id, None)])
 
         if devices:
             user_devices = devices[user_id]
-- 
cgit 1.5.1