hotfix: initWithStore

onboarding
Christian Pauly 5 years ago
parent 354c5cde82
commit a7a762015d

@ -85,10 +85,8 @@ class MatrixState extends State<Matrix> {
void _initWithStore() async {
var initLoginState = client.onLoginStateChanged.stream.first;
try {
client.database = await getDatabase(client).timeout(
Duration(seconds: 15),
);
client.connect();
client.database = await getDatabase(client);
await client.connect();
if (await initLoginState == LoginState.logged && PlatformInfos.isMobile) {
await FirebaseController.setupFirebase(
this,

@ -31,7 +31,6 @@ Future<Database> getDatabase(Client client) async {
filename: 'moor.sqlite',
password: password,
);
debugPrint('[Moor] Database has been created');
if (needMigration) {
debugPrint('[Moor] Start migration');
await migrate(client.clientName, _db, store);

Loading…
Cancel
Save