diff --git a/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs b/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs index 08350d032..c8f9c9634 100644 --- a/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs +++ b/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs @@ -46,6 +46,15 @@ namespace Bit.App.Pages }, _mainContent); } + protected override bool OnBackButtonPressed() + { + if (Device.RuntimePlatform == Device.Android) + { + _appOptions.Uri = null; + } + return base.OnBackButtonPressed(); + } + private async void RowSelected(object sender, SelectionChangedEventArgs e) { ((ExtendedCollectionView)sender).SelectedItem = null;