mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 02:07:12 +00:00
Fixed saving unchanged drafts
This commit is contained in:
parent
8fbcbf38d4
commit
9303ba4978
1 changed files with 11 additions and 6 deletions
|
@ -3654,14 +3654,19 @@ public class FragmentCompose extends FragmentBase {
|
|||
|
||||
String p = Helper.readText(draft.getFile(context));
|
||||
Document doc = JsoupEx.parse(p);
|
||||
if ((body != null && !body.equals(doc.html())) ||
|
||||
doc.select("div[fairemail=signature]").remove();
|
||||
Elements ref = doc.select("div[fairemail=reference]");
|
||||
ref.remove();
|
||||
|
||||
if (body == null)
|
||||
body = Document.createShell("").html();
|
||||
Document b = HtmlHelper.sanitize(context, body, true, false);
|
||||
body = b.html();
|
||||
|
||||
if (!b.body().html().equals(doc.body().html()) ||
|
||||
(extras != null && extras.containsKey("html"))) {
|
||||
dirty = true;
|
||||
|
||||
doc.select("div[fairemail=signature]").remove();
|
||||
Elements ref = doc.select("div[fairemail=reference]");
|
||||
ref.remove();
|
||||
|
||||
boolean signature_end = prefs.getBoolean("signature_end", false);
|
||||
|
||||
// Get saved body
|
||||
|
@ -3741,7 +3746,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
action == R.id.action_undo ||
|
||||
action == R.id.action_redo ||
|
||||
action == R.id.action_check) {
|
||||
if (BuildConfig.DEBUG || dirty)
|
||||
if (dirty)
|
||||
EntityOperation.queue(context, draft, EntityOperation.ADD);
|
||||
|
||||
if (action == R.id.action_check) {
|
||||
|
|
Loading…
Reference in a new issue