fix connection string for litedb
This commit is contained in:
parent
21777602f6
commit
addb7a0ecb
|
@ -12,7 +12,7 @@ namespace Bit.Core.Services
|
||||||
|
|
||||||
public LiteDbStorageService(string dbPath)
|
public LiteDbStorageService(string dbPath)
|
||||||
{
|
{
|
||||||
var db = new LiteDatabase($"filename={dbPath}");
|
var db = new LiteDatabase($"Filename={dbPath};");
|
||||||
_collection = db.GetCollection<JsonItem>("json_items");
|
_collection = db.GetCollection<JsonItem>("json_items");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue