aboutsummaryrefslogtreecommitdiff
path: root/src/components/extra_buttons
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-05-07 16:33:21 -0500
committerMark Felder <feld@FreeBSD.org>2020-05-07 16:33:21 -0500
commit41fc26869f4ce9e93da94f1e441c69e2e37b0124 (patch)
tree719facbc582fc6ab5d34de1a7bad2c81cb789fac /src/components/extra_buttons
parent93baa8b664ed7769f5a562953b4b9b93d21ff043 (diff)
Correctly resolve the URI of the server
Diffstat (limited to 'src/components/extra_buttons')
-rw-r--r--src/components/extra_buttons/extra_buttons.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/extra_buttons/extra_buttons.js b/src/components/extra_buttons/extra_buttons.js
index 2dd77c66..e1bf7e20 100644
--- a/src/components/extra_buttons/extra_buttons.js
+++ b/src/components/extra_buttons/extra_buttons.js
@@ -5,7 +5,7 @@ const ExtraButtons = {
components: { Popover },
data: function () {
return {
- statusLink: `https://${this.$store.state.instance.name}${this.$router.resolve({ name: 'conversation', params: { id: this.status.id } }).href}`
+ statusLink: `${this.$store.state.instance.server}${this.$router.resolve({ name: 'conversation', params: { id: this.status.id } }).href}`
}
},
methods: {