1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

Fix autofill on Chrome from the iOS Share Extension (#1254)

* Process UTTypeURL data received from host app

* Disable autofill via Share extension for Chrome
This commit is contained in:
Thomas Rittson
2021-02-12 08:14:37 +10:00
committed by GitHub
parent 5e70d03dbe
commit d88695f5d5
3 changed files with 4 additions and 1 deletions

View File

@@ -49,7 +49,8 @@ namespace Bit.iOS.Extension
{
if (Context.ProviderType != Constants.UTTypeAppExtensionFillBrowserAction
&& Context.ProviderType != Constants.UTTypeAppExtensionFillWebViewAction
&& Context.ProviderType != UTType.PropertyList)
&& Context.ProviderType != UTType.PropertyList
&& Context.ProviderType != Constants.UTTypeAppExtensionUrl)
{
return true;
}