commit: 1418054b53003a6ca4fe8d88ee976993f96d967a
parent 48c739027cd554f30c73502bed91951673f11ec7
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date: Tue, 31 May 2022 17:46:31 +0000
Merge branch 'from/develop/tusooa/fix-open-chat' into 'develop'
Fix Open Chat button
See merge request pleroma/pleroma-fe!1532
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 }
})
}
},