From ffe83d24ce16b528b9decace80aadef3b984ac2b Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 5 Mar 2020 11:53:16 +0200 Subject: [PATCH] compose email: skip appending initial body if changed --- client/src/views/email/record/compose.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/email/record/compose.js b/client/src/views/email/record/compose.js index adfa476109..188461b8bb 100644 --- a/client/src/views/email/record/compose.js +++ b/client/src/views/email/record/compose.js @@ -109,7 +109,7 @@ define('views/email/record/compose', ['views/record/edit', 'views/email/record/d body = this.appendSignature(body || '', data.isHtml); } - if (this.initialBody) { + if (this.initialBody && !this.isBodyChanged) { var initialBody = this.initialBody; if (data.isHtml !== this.initialIsHtml) { if (data.isHtml) {