mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-05 04:19:21 +01:00
Fixed pasting plain text
This commit is contained in:
@@ -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());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user