aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2022-05-31 17:46:31 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2022-05-31 17:46:31 +0000
commit1418054b53003a6ca4fe8d88ee976993f96d967a (patch)
treeead4f4f4e6dc575b9f94395c4ac7b164edbb5a6b
parent48c739027cd554f30c73502bed91951673f11ec7 (diff)
parent152302cbff4e311da2922021efa9c326ceca6570 (diff)
Merge branch 'from/develop/tusooa/fix-open-chat' into 'develop'
Fix Open Chat button See merge request pleroma/pleroma-fe!1532
-rw-r--r--src/components/account_actions/account_actions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/account_actions/account_actions.js b/src/components/account_actions/account_actions.js
index e53c4f77..99762562 100644
--- a/src/components/account_actions/account_actions.js
+++ b/src/components/account_actions/account_actions.js
@@ -40,7 +40,7 @@ const AccountActions = {
openChat () {
this.$router.push({
name: 'chat',
- params: { recipient_id: this.user.id }
+ params: { username: this.$store.state.users.currentUser.screen_name, recipient_id: this.user.id }
})
}
},