Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-05-06 10:26:33 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-05-06 10:26:33 +0300
commitd22180aa285daeb9079a02f08cd63368a7164a27 (patch)
treeb11da530698e526ab790d3c25a9573dabd11c898 /src
parent3f0e5dd7d21e822656c0b94a26334558115d7ef1 (diff)
Fix flagging replied messages
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'src')
-rw-r--r--src/components/Composer.vue2
-rw-r--r--src/components/NewMessageModal.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Composer.vue b/src/components/Composer.vue
index 2caa1e112..c962df8a7 100644
--- a/src/components/Composer.vue
+++ b/src/components/Composer.vue
@@ -803,7 +803,7 @@ export default {
subject: this.subjectVal,
body: this.encrypt ? plain(this.bodyVal) : html(this.bodyVal),
attachments: this.attachments,
- messageId: this.replyTo ? this.replyTo.databaseId : undefined,
+ inReplyToMessageId: this.replyTo ? this.replyTo.messageId : undefined,
isHtml: !this.editorPlainText,
requestMdn: this.requestMdn,
sendAt: this.sendAtVal ? Math.floor(this.sendAtVal / 1000) : undefined,
diff --git a/src/components/NewMessageModal.vue b/src/components/NewMessageModal.vue
index 2f3e24c9a..953ed7f79 100644
--- a/src/components/NewMessageModal.vue
+++ b/src/components/NewMessageModal.vue
@@ -106,7 +106,7 @@ export default {
bcc: serializeRecipients ? data.bcc.map(this.recipientToRfc822).join(', ') : data.bcc,
attachments: data.attachments,
aliasId: data.aliasId,
- inReplyToMessageId: null,
+ inReplyToMessageId: data.inReplyToMessageId,
sendAt: data.sendAt,
}
},