Merge branch 'braid/hive-collection-path' into 'main'

fix: make Hive Collection path nullable

See merge request famedly/company/frontend/famedlysdk!1089
This commit is contained in:
Krille Fear 2022-08-01 05:47:05 +00:00
commit 7b7bdf7317
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ import 'package:matrix/src/utils/run_benchmarked.dart';
class HiveCollectionsDatabase extends DatabaseApi {
static const int version = 6;
final String name;
final String path;
final String? path;
final HiveCipher? key;
late BoxCollection _collection;
late CollectionBox<String> _clientBox;