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 <ChristophWurst@users.noreply.github.com>2022-03-01 15:40:11 +0300
committerGitHub <noreply@github.com>2022-03-01 15:40:11 +0300
commit87116929791762d5a2c1db21d95e6577a8e1c122 (patch)
tree9caab4ad90b9f7cc6a2fc2ab80d391e086a9646b /src
parent8800a654ec8a1f2f50625a906c9607bd7136514b (diff)
parentc2903b0bd0b99fc29752fbdedb39eb1828c168ef (diff)
Merge pull request #5748 from nextcloud/fix-envelope-account
Fixes use mailbox.accountId as fallback when accountId isn't defined in Envelope.vue
Diffstat (limited to 'src')
-rw-r--r--src/components/Envelope.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Envelope.vue b/src/components/Envelope.vue
index 0058ab900..4650ba01b 100644
--- a/src/components/Envelope.vue
+++ b/src/components/Envelope.vue
@@ -244,7 +244,7 @@ export default {
return this.data.flags.draft
},
account() {
- const accountId = this.data.accountId ?? this.data.accountId
+ const accountId = this.data.accountId
return this.$store.getters.getAccount(accountId)
},
link() {