This commit is contained in:
Kyle Spearrin 2019-05-30 08:45:39 -04:00
parent e34ca49b9b
commit 32395dcb20
2 changed files with 3 additions and 1 deletions

View File

@ -91,6 +91,7 @@ namespace Bit.App.Pages
return;
}
ShowPassword = false;
try
{
await _deviceActionService.ShowLoadingAsync(AppResources.LoggingIn);

View File

@ -188,7 +188,8 @@ namespace Bit.App.Pages
{
if(_inited && UriMatchSelectedIndex > -1)
{
await _storageService.SaveAsync(Constants.DefaultUriMatch, UriMatchOptions[UriMatchSelectedIndex].Key);
await _storageService.SaveAsync(Constants.DefaultUriMatch,
(int?)UriMatchOptions[UriMatchSelectedIndex].Key);
}
}
}