Skip to content

Commit

Permalink
[C129] [Android] Fix for url from share intent (uplift to 1.71.x) (#2…
Browse files Browse the repository at this point in the history
…5622)

Uplift of #25609 (squashed) to beta
  • Loading branch information
brave-builds authored Sep 18, 2024
1 parent b6c8fce commit 49886f5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ protected static String extractUrlFromIntent(Intent intent) {
String url = IntentHandler.getUrlFromVoiceSearchResult(intent);
if (url == null) url = getUrlForCustomTab(intent);
if (url == null) url = getUrlForWebapp(intent);
if (url == null) url = IntentHandler.getUrlFromShareIntent(intent);
if (url == null) url = intent.getDataString();
if (url == null) url = getUrlFromText(intent);
if (url == null) url = getWebSearchUrl(intent);
Expand Down

0 comments on commit 49886f5

Please sign in to comment.