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:
commit
fc1146fe94
|
|
@ -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
|
## [0.14.3] - 24th Oct 2022
|
||||||
- fix: Do not assume that push rules are never malformed in account data
|
- fix: Do not assume that push rules are never malformed in account data
|
||||||
- chore: change codeowners
|
- chore: change codeowners
|
||||||
|
|
|
||||||
|
|
@ -2961,7 +2961,10 @@ class Client extends MatrixApi {
|
||||||
await legacyDatabase?.close();
|
await legacyDatabase?.close();
|
||||||
_initLock = false;
|
_initLock = false;
|
||||||
if (migrateClient != null) {
|
if (migrateClient != null) {
|
||||||
return init();
|
return init(
|
||||||
|
waitForFirstSync: false,
|
||||||
|
waitUntilLoadCompletedLoaded: false,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 0.14.3
|
version: 0.14.4
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git
|
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue