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/notification/notification.js | |
| parent | 24eba26c5b34a6abedbafebab0ed9489f0fcccd6 (diff) | |
Treat reserved users like external users in the frontend.
Diffstat (limited to 'src/components/notification/notification.js')
| -rw-r--r-- | src/components/notification/notification.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js index 9ab870b6..e83b2263 100644 --- a/src/components/notification/notification.js +++ b/src/components/notification/notification.js @@ -23,7 +23,7 @@ const Notification = { this.userExpanded = !this.userExpanded }, userProfileLink (user) { - return generateProfileLink(user.id, user.screen_name) + return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames) } }, computed: { |
