mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
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:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user