diff options
| author | Lambda <lambda@lum.domain_not_set.invalid> | 2018-12-26 14:50:48 +0100 |
|---|---|---|
| committer | Lambda <lambda@lum.domain_not_set.invalid> | 2018-12-26 14:50:48 +0100 |
| commit | f35dbaf064cfe14ee26053a729ae1c31b76800e2 (patch) | |
| tree | b9bffffeb8554730261b08cd4dcac2d6d9f99713 /src/components/status/status.js | |
| parent | 24eba26c5b34a6abedbafebab0ed9489f0fcccd6 (diff) | |
Treat reserved users like external users in the frontend.
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index e683056f..d4eb0d60 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -291,7 +291,7 @@ const Status = { this.showPreview = false }, userProfileLink (id, name) { - return generateProfileLink(id, name) + return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames) } }, watch: { |
