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
1 changed files with 1 additions and 1 deletions

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)