Username is now correctly persisted

Set credentials validation works as intended
Getting settings has default values
Add parent group in Move searchbox
Moving entries work as intended
Removed unreferenced code files
This commit is contained in:
Geoffroy BONNEVILLE
2020-04-30 19:40:48 +02:00
parent e5353478f4
commit 8de493f987
18 changed files with 53 additions and 399 deletions

View File

@@ -13,7 +13,8 @@ namespace ModernKeePass.Infrastructure.UWP
{
try
{
return (T)Convert.ChangeType(_values[property], typeof(T));
var value = (T)Convert.ChangeType(_values[property], typeof(T));
return value == null ? defaultValue : value;
}
catch (InvalidCastException)
{