diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2021-11-02 10:39:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 10:39:02 +0000 |
commit | c9c3aea9b189cb606d7ec2905dad2c87acc039ef (patch) | |
tree | 1a0a4482d68fc83f36dfce35f5445120bdab32ce /synapse/storage/databases/main/devices.py | |
parent | Add search by room ID and room alias to List Room admin API (#11099) (diff) | |
download | synapse-c9c3aea9b189cb606d7ec2905dad2c87acc039ef.tar.xz |
Fix providing a `RoomStreamToken` instance to `_notify_app_services_ephemeral` (#11137)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'synapse/storage/databases/main/devices.py')
-rw-r--r-- | synapse/storage/databases/main/devices.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/databases/main/devices.py b/synapse/storage/databases/main/devices.py index b15cd030e0..9ccc66e589 100644 --- a/synapse/storage/databases/main/devices.py +++ b/synapse/storage/databases/main/devices.py @@ -427,7 +427,7 @@ class DeviceWorkerStore(SQLBaseStore): user_ids: the users who were signed Returns: - THe new stream ID. + The new stream ID. """ async with self._device_list_id_gen.get_next() as stream_id: @@ -1322,7 +1322,7 @@ class DeviceStore(DeviceWorkerStore, DeviceBackgroundUpdateStore): async def add_device_change_to_streams( self, user_id: str, device_ids: Collection[str], hosts: List[str] - ): + ) -> int: """Persist that a user's devices have been updated, and which hosts (if any) should be poked. """ |