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:
authorCyrille Bollu <cyr.debian@bollu.be>2021-11-25 13:05:39 +0300
committerCyrille Bollu <cyrpub@bollu.be>2021-11-26 16:11:32 +0300
commitc2903b0bd0b99fc29752fbdedb39eb1828c168ef (patch)
treef2e5f344bb1d945328509495311c998cc6957ad1 /src
parent80ba123ec770cd98b92ea2f9b19d15fe60ada179 (diff)
Fixes use mailbox.accountId as fallback when accountId isn't defined in
Envelope.vue Signed-off-by: Cyrille Bollu <cyr.debian@bollu.be>
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 1a360aff9..4dfa9f1f9 100644
--- a/src/components/Envelope.vue
+++ b/src/components/Envelope.vue
@@ -249,7 +249,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() {