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:
parent
cfaf409d6e
commit
9035d73c02
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue