[Glitch] Fix issues with sending direct messages from user profile
Port 4fd71accd4
to glitch-soc
This commit is contained in:
parent
a5fac975f3
commit
fb6de5310d
2 changed files with 7 additions and 2 deletions
|
@ -328,7 +328,7 @@ export default function compose(state = initialState, action) {
|
|||
.set('idempotencyKey', uuid());
|
||||
case COMPOSE_DIRECT:
|
||||
return state
|
||||
.update('text', text => `${text}@${action.account.get('acct')} `)
|
||||
.update('text', text => `@${action.account.get('acct')} `)
|
||||
.set('privacy', 'direct')
|
||||
.set('focusDate', new Date())
|
||||
.set('idempotencyKey', uuid());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue