Remove mark_token_seen

This commit is contained in:
Erik Johnston 2024-08-22 13:46:07 +01:00
parent 3838b18d3b
commit ed7591cbef
2 changed files with 0 additions and 13 deletions

View file

@ -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

View file

@ -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