Skip to content

Commit

Permalink
Another small intent fix (#4171)
Browse files Browse the repository at this point in the history
b/359637244
  • Loading branch information
kaidokert authored Sep 28, 2024
1 parent 4cf90a1 commit 3a4f134
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ private static boolean hasArg(List<String> args, String argName) {
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
getStarboardBridge().handleDeepLink(getIntentUrlAsString(intent));
String url = getIntentUrlAsString(intent);
if(url != null ) {
webView.loadUrl(url);
}
}

/**
Expand Down

0 comments on commit 3a4f134

Please sign in to comment.