diff options
author | Mathieu Velten <mathieuv@matrix.org> | 2022-08-02 15:23:52 +0200 |
---|---|---|
committer | Mathieu Velten <mathieuv@matrix.org> | 2022-08-02 15:23:52 +0200 |
commit | ea8cf6edcf663aef333ccf2b3d49dadc0e1e0952 (patch) | |
tree | 06bcf421609135fdf9dc29fd4369a1387ddb966a /synapse | |
parent | Address comment (diff) | |
download | synapse-ea8cf6edcf663aef333ccf2b3d49dadc0e1e0952.tar.xz |
Type mistake
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/databases/main/deviceinbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/deviceinbox.py b/synapse/storage/databases/main/deviceinbox.py index 79e3862d5f..bab52ab389 100644 --- a/synapse/storage/databases/main/deviceinbox.py +++ b/synapse/storage/databases/main/deviceinbox.py @@ -219,7 +219,7 @@ class DeviceInboxWorkerStore(SQLBaseStore): same device should pass this value as 'from_stream_id'. """ if limit == 0: - return {}, from_stream_id + return [], from_stream_id ( user_id_device_id_to_messages, |