1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-18 21:28:54 +00:00

Fixed pasting formatted signature in HTML mode

This commit is contained in:
M66B 2021-07-19 09:44:34 +02:00
parent cfaf409d6e
commit 9035d73c02

View file

@ -138,7 +138,7 @@ public class EditTextCompose extends FixedEditText {
ClipData.Item item = cbm.getPrimaryClip().getItemAt(0);
final String html;
String h = item.getHtmlText();
String h = (raw ? null : item.getHtmlText());
if (h == null) {
CharSequence text = item.getText();
if (text == null)