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:
Diffstat (limited to 'src')
-rw-r--r--src/components/NewMessageModal.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/NewMessageModal.vue b/src/components/NewMessageModal.vue
index fef9585a5..c3736f0b7 100644
--- a/src/components/NewMessageModal.vue
+++ b/src/components/NewMessageModal.vue
@@ -93,7 +93,7 @@ export default {
cc: data.cc,
bcc: data.bcc,
attachments: data.attachments,
- aliasId: null,
+ aliasId: data.aliasId,
inReplyToMessageId: null,
sendAt: Math.floor(now / 1000), // JS timestamp is in milliseconds
}
@@ -114,7 +114,7 @@ export default {
cc: data.cc,
bcc: data.bcc,
attachments: data.attachments,
- aliasId: null,
+ aliasId: data.aliasId,
inReplyToMessageId: null,
sendAt: Math.floor(now / 1000), // JS timestamp is in milliseconds
}