We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 905e5ed commit a7b16beCopy full SHA for a7b16be
1 file changed
CustomWebView.java
@@ -1531,7 +1531,7 @@ public boolean DeepLinkParser(String url){
1531
return true;
1532
}else if (url.startsWith("whatsapp:")){
1533
intent = new Intent(Intent.ACTION_SEND);
1534
- intent.putExtra(Intent.EXTRA_TEXT,Uri.parse(url));
+ intent.putExtra(Intent.EXTRA_TEXT,Uri.parse(url).getQueryParameter("text"));
1535
intent.setType("text/plain");
1536
intent.setPackage("com.whatsapp");
1537
activity.startActivity(intent);
0 commit comments