Merge branch 'krille/more-stable-migration' into 'main'

fix: Do not wait for first sync after migration init

See merge request famedly/company/frontend/famedlysdk!1153
This commit is contained in:
Krille Fear 2022-10-26 10:07:58 +00:00
commit fc1146fe94
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,6 @@
## [0.14.4] - 26th Oct 2022
- fix: Do not wait for first sync after migration init
## [0.14.3] - 24th Oct 2022
- fix: Do not assume that push rules are never malformed in account data
- chore: change codeowners

View File

@ -2961,7 +2961,10 @@ class Client extends MatrixApi {
await legacyDatabase?.close();
_initLock = false;
if (migrateClient != null) {
return init();
return init(
waitForFirstSync: false,
waitUntilLoadCompletedLoaded: false,
);
}
}
}

View File

@ -1,6 +1,6 @@
name: matrix
description: Matrix Dart SDK
version: 0.14.3
version: 0.14.4
homepage: https://famedly.com
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git