diff options
| author | Shpuld Shpludson <shp@cock.li> | 2021-02-27 18:12:52 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2021-02-27 18:12:52 +0000 |
| commit | aa5cb3d1d2421eaf5cc9e08264f7924a627319a3 (patch) | |
| tree | daaf784377b5cb81a2ccad6b13e39b955280a54e /src/components/chat/chat.js | |
| parent | a83fdbbd595e646d996b25e01c93c15723125455 (diff) | |
| parent | 237f272d1597cd2132f369ec1f7059fab026bc26 (diff) | |
Merge branch 'fix/punycode-buggy' into 'develop'
Fix punycode handling to be less stupid
Closes #1064
See merge request pleroma/pleroma-fe!1361
Diffstat (limited to 'src/components/chat/chat.js')
| -rw-r--r-- | src/components/chat/chat.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/chat/chat.js b/src/components/chat/chat.js index 2780be75..b54f5fb2 100644 --- a/src/components/chat/chat.js +++ b/src/components/chat/chat.js @@ -73,7 +73,7 @@ const Chat = { }, formPlaceholder () { if (this.recipient) { - return this.$t('chats.message_user', { nickname: this.recipient.screen_name }) + return this.$t('chats.message_user', { nickname: this.recipient.screen_name_ui }) } else { return '' } |
