fix: Web
This commit is contained in:
parent
ad21986ae8
commit
522856dc9b
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ class FlutterFluffyBoxDatabase extends FluffyBoxDatabase {
|
||||||
|
|
||||||
final db = FluffyBoxDatabase(
|
final db = FluffyBoxDatabase(
|
||||||
'fluffybox_${client.clientName.replaceAll(' ', '_').toLowerCase()}',
|
'fluffybox_${client.clientName.replaceAll(' ', '_').toLowerCase()}',
|
||||||
openSqlDatabase: () => _openSqlDatabase(client, password),
|
openSqlDatabase: kIsWeb ? null : () => _openSqlDatabase(client, password),
|
||||||
);
|
);
|
||||||
await db.open();
|
await db.open();
|
||||||
Logs().d('FluffyBox is ready');
|
Logs().d('FluffyBox is ready');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue