mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 23:33:34 +00:00
fix connection string for litedb
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Bit.Core.Services
|
||||
|
||||
public LiteDbStorageService(string dbPath)
|
||||
{
|
||||
var db = new LiteDatabase($"filename={dbPath}");
|
||||
var db = new LiteDatabase($"Filename={dbPath};");
|
||||
_collection = db.GetCollection<JsonItem>("json_items");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user