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:
authorAnna <anna@nextcloud.com>2022-04-07 23:49:11 +0300
committerGitHub <noreply@github.com>2022-04-07 23:49:11 +0300
commit0f70eb0079cf52c25123848433b7e0573577e1ab (patch)
tree682ce50cbba439fdaf8883da5059241657e82273 /src
parent44edca9de52e22771226e4df0461ebe085c195e7 (diff)
parent68827db8b9e2d463e9adc6a6b7e719c15b84dac8 (diff)
Merge pull request #6202 from nextcloud/fix/outbox-composer-alias-id
Fix alias ID for new outbox messages
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
}