mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
fix connection string for litedb
This commit is contained in:
parent
21777602f6
commit
addb7a0ecb
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue