hotfix: Rethrow getDatabase exception
This commit is contained in:
parent
44a5acd0ab
commit
d1abe8c61d
|
@ -36,6 +36,8 @@ Future<Database> getDatabase(Client client) async {
|
||||||
await store.setItem('database-password', password);
|
await store.setItem('database-password', password);
|
||||||
}
|
}
|
||||||
return _db;
|
return _db;
|
||||||
|
} catch (_) {
|
||||||
|
rethrow;
|
||||||
} finally {
|
} finally {
|
||||||
_generateDatabaseLock = false;
|
_generateDatabaseLock = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue