hotfix: initWithStore
This commit is contained in:
parent
a9678918a3
commit
d3f4ddc80b
|
@ -85,10 +85,8 @@ class MatrixState extends State<Matrix> {
|
||||||
void _initWithStore() async {
|
void _initWithStore() async {
|
||||||
var initLoginState = client.onLoginStateChanged.stream.first;
|
var initLoginState = client.onLoginStateChanged.stream.first;
|
||||||
try {
|
try {
|
||||||
client.database = await getDatabase(client).timeout(
|
client.database = await getDatabase(client);
|
||||||
Duration(seconds: 15),
|
await client.connect();
|
||||||
);
|
|
||||||
client.connect();
|
|
||||||
if (await initLoginState == LoginState.logged && PlatformInfos.isMobile) {
|
if (await initLoginState == LoginState.logged && PlatformInfos.isMobile) {
|
||||||
await FirebaseController.setupFirebase(
|
await FirebaseController.setupFirebase(
|
||||||
this,
|
this,
|
||||||
|
|
|
@ -31,7 +31,6 @@ Future<Database> getDatabase(Client client) async {
|
||||||
filename: 'moor.sqlite',
|
filename: 'moor.sqlite',
|
||||||
password: password,
|
password: password,
|
||||||
);
|
);
|
||||||
debugPrint('[Moor] Database has been created');
|
|
||||||
if (needMigration) {
|
if (needMigration) {
|
||||||
debugPrint('[Moor] Start migration');
|
debugPrint('[Moor] Start migration');
|
||||||
await migrate(client.clientName, _db, store);
|
await migrate(client.clientName, _db, store);
|
||||||
|
|
Loading…
Reference in a new issue