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-04-07 22:01:55 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-04-07 22:01:55 +0300
commit68827db8b9e2d463e9adc6a6b7e719c15b84dac8 (patch)
tree1e6a709bd5e0c2fa54a1e80c7ab7e0f909a98732 /src
parent323d9b287518c9829f1fbfc2798bbad4ebc82f84 (diff)
Fix alias ID for new outbox messages
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
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
}