Skip sanitizing shared html text

This commit is contained in:
M66B 2019-01-24 18:48:37 +00:00
parent 4140bb021c
commit c74d83006a
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public class ActivityCompose extends ActivityBilling implements FragmentManager.
if (intent.hasExtra(Intent.EXTRA_HTML_TEXT)) {
String html = intent.getStringExtra(Intent.EXTRA_HTML_TEXT);
if (html != null)
args.putString("body", HtmlHelper.getText(html));
args.putString("body", html);
} else if (intent.hasExtra(Intent.EXTRA_TEXT)) {
String body = intent.getStringExtra(Intent.EXTRA_TEXT);
if (body != null)