mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-26 02:45:31 +01:00
Fixed pasting formatted signature in HTML mode
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user