Add a migration to expire sync sessions so that m.space.* state is up to date. (#4482)

This commit is contained in:
Doug
2025-09-09 15:35:32 +01:00
committed by GitHub
parent dd387a7aa2
commit c6f3de8be7
6 changed files with 116 additions and 29 deletions

View File

@@ -410,6 +410,10 @@ class ClientProxy: ClientProxyProtocol {
}
}
func expireSyncSessions() async {
await syncService.expireSessions()
}
func accountURL(action: AccountManagementAction) async -> URL? {
try? await client.accountUrl(action: action).flatMap(URL.init(string:))
}