mirror of https://github.com/M66B/FairEmail.git
Fixed pasting plain text
This commit is contained in:
parent
b2724c35db
commit
d51a51d16a
|
@ -71,7 +71,9 @@ public class EditTextCompose extends AppCompatEditText {
|
|||
if (clipboard.hasPrimaryClip()) {
|
||||
ClipData.Item item = clipboard.getPrimaryClip().getItemAt(0);
|
||||
|
||||
String html = item.coerceToHtmlText(context);
|
||||
String html = item.getHtmlText();
|
||||
if (html == null)
|
||||
html = "<div>" + HtmlHelper.formatPre(item.getText().toString()) + "</div>";
|
||||
Document document = HtmlHelper.sanitize(context, html, false, false);
|
||||
Spanned paste = HtmlHelper.fromHtml(document.html());
|
||||
|
||||
|
|
Loading…
Reference in New Issue