Correctly resolve the URI of the server

This commit is contained in:
Mark Felder 2020-05-07 16:33:21 -05:00
parent 93baa8b664
commit 41fc26869f
1 changed files with 1 additions and 1 deletions

View File

@ -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: {