浏览代码

Update PostComponent, update mention handler. Fixes #2421

Daniel Supernault 4 年之前
父节点
当前提交
dac060888a
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      resources/assets/js/components/PostComponent.vue

+ 3 - 1
resources/assets/js/components/PostComponent.vue

@@ -1149,8 +1149,10 @@ export default {
           this.replyToIndex = index;
           this.replyingToId = e.id;
           this.reply_to_profile_id = e.account.id;
+          let username = e.account.local ? '@' + e.account.username + ' '
+            : '@' + e.account.acct + ' ';
           if(prependUsername == true) {
-            this.replyText = '@' + e.account.username + ' ';
+            this.replyText = username;
           }
           $('textarea[name="comment"]').focus();
       },