mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 15:53:44 +00:00
dont reset main page for autofill framework
This commit is contained in:
@@ -72,7 +72,7 @@ namespace Bit.App
|
|||||||
{
|
{
|
||||||
MainPage = new ExtendedNavigationPage(new VaultAddCipherPage(_options));
|
MainPage = new ExtendedNavigationPage(new VaultAddCipherPage(_options));
|
||||||
}
|
}
|
||||||
else if (_options.Uri != null)
|
else if(_options.Uri != null)
|
||||||
{
|
{
|
||||||
MainPage = new ExtendedNavigationPage(new VaultAutofillListCiphersPage(_options.Uri));
|
MainPage = new ExtendedNavigationPage(new VaultAutofillListCiphersPage(_options.Uri));
|
||||||
}
|
}
|
||||||
@@ -175,7 +175,8 @@ namespace Bit.App
|
|||||||
|
|
||||||
private void SetMainPageFromAutofill()
|
private void SetMainPageFromAutofill()
|
||||||
{
|
{
|
||||||
if(Device.RuntimePlatform == Device.Android && !string.IsNullOrWhiteSpace(_options.Uri))
|
if(Device.RuntimePlatform == Device.Android && !string.IsNullOrWhiteSpace(_options.Uri) &&
|
||||||
|
!_options.FromAutofillFramework)
|
||||||
{
|
{
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user