Create AppMigration09 to remove the cached well-known config from the SDK (#6026)

This value was most likely was incorrectly cached due to a previous issue in the SDK
This commit is contained in:
Jorge Martin Espinosa 2026-01-16 16:03:49 +01:00 committed by GitHub
parent 23d3066a38
commit 98890f5365
5 changed files with 104 additions and 0 deletions

View file

@ -214,7 +214,15 @@ interface MatrixClient {
*/
fun createLinkDesktopHandler(): Result<LinkDesktopHandler>
/**
* Performs a database optimization that should flush cached data and improve performance.
*/
suspend fun performDatabaseVacuum(): Result<Unit>
/**
* Resets the cached client `well-known` config by the SDK.
*/
suspend fun resetWellKnownConfig(): Result<Unit>
}
/**