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>2021-12-07 18:18:23 +0300
committerGitHub <noreply@github.com>2021-12-07 18:18:23 +0300
commitca37fa14d77c146730b1129c83f2d8658b0876f0 (patch)
tree4868e97e9af93311a270e6e6e1e96bf0d438bb03 /src
parent22400c284daf7b10694748844421d30fc9fd4319 (diff)
parent9fdff80d6f5810b93458c2cd38b00ae3b9d73db5 (diff)
Merge pull request #5777 from nextcloud/fix/trusted-domains
Fix trusted domain regression
Diffstat (limited to 'src')
-rw-r--r--src/components/MessageHTMLBody.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/MessageHTMLBody.vue b/src/components/MessageHTMLBody.vue
index 3d3ddbe9b..78740776e 100644
--- a/src/components/MessageHTMLBody.vue
+++ b/src/components/MessageHTMLBody.vue
@@ -134,7 +134,7 @@ export default {
async onShowBlockedContentForDomain() {
this.displayIframe()
// TODO: there might be more than one @ in an email address
- await trustSender(this.getDomain(), 'domain', true)
+ await trustSender(this.domain, 'domain', true)
},
},
}