mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 01:25:44 +03:00
Remove mark_token_seen
This commit is contained in:
parent
3838b18d3b
commit
ed7591cbef
2 changed files with 0 additions and 13 deletions
|
@ -333,11 +333,6 @@ class SlidingSyncHandler:
|
|||
)
|
||||
)
|
||||
|
||||
await self.connection_store.mark_token_seen(
|
||||
sync_config=sync_config,
|
||||
from_token=from_token,
|
||||
)
|
||||
|
||||
# Get all of the room IDs that the user should be able to see in the sync
|
||||
# response
|
||||
has_lists = sync_config.lists is not None and len(sync_config.lists) > 0
|
||||
|
|
|
@ -121,11 +121,3 @@ class SlidingSyncConnectionStore:
|
|||
from_token.connection_position if from_token else None,
|
||||
new_connection_state,
|
||||
)
|
||||
|
||||
@trace
|
||||
async def mark_token_seen(
|
||||
self,
|
||||
sync_config: SlidingSyncConfig,
|
||||
from_token: Optional[SlidingSyncStreamToken],
|
||||
) -> None:
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue