mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-01 03:45:10 +00:00
Skip sanitizing shared html text
This commit is contained in:
parent
4140bb021c
commit
c74d83006a
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue