Explorar el Código

Merge branch 'from/develop/tusooa/fix-open-chat' into 'develop'

Fix Open Chat button

See merge request pleroma/pleroma-fe!1532
HJ hace 2 años
padre
commit
1418054b53
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/components/account_actions/account_actions.js

+ 1 - 1
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 }
       })
     }
   },