From 32395dcb20535e74097d94b380f1aa3acfbe10b4 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 30 May 2019 08:45:39 -0400 Subject: [PATCH] fixes --- src/App/Pages/Accounts/LoginPageViewModel.cs | 1 + src/App/Pages/Settings/OptionsPageViewModel.cs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/App/Pages/Accounts/LoginPageViewModel.cs b/src/App/Pages/Accounts/LoginPageViewModel.cs index 713599a9a..734c4464f 100644 --- a/src/App/Pages/Accounts/LoginPageViewModel.cs +++ b/src/App/Pages/Accounts/LoginPageViewModel.cs @@ -91,6 +91,7 @@ namespace Bit.App.Pages return; } + ShowPassword = false; try { await _deviceActionService.ShowLoadingAsync(AppResources.LoggingIn); diff --git a/src/App/Pages/Settings/OptionsPageViewModel.cs b/src/App/Pages/Settings/OptionsPageViewModel.cs index 17c79a015..6d01743fa 100644 --- a/src/App/Pages/Settings/OptionsPageViewModel.cs +++ b/src/App/Pages/Settings/OptionsPageViewModel.cs @@ -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); } } }