1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

fix connection string for litedb

This commit is contained in:
Kyle Spearrin 2019-03-27 23:47:24 -04:00
parent 21777602f6
commit addb7a0ecb

View File

@ -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");
} }