Fix clicking on account name in “[xxx] boosted” text leading to broken path
This commit is contained in:
parent
e660a7bbb0
commit
b31748a496
|
@ -17,7 +17,7 @@ export default class StatusPrepend extends React.PureComponent {
|
|||
|
||||
handleClick = (e) => {
|
||||
const { account, parseClick } = this.props;
|
||||
parseClick(e, `/${account.get('acct')}`);
|
||||
parseClick(e, `/@${account.get('acct')}`);
|
||||
}
|
||||
|
||||
Message = () => {
|
||||
|
|
Loading…
Reference in New Issue