Fix non-numeric account identifiers leading to /web/accounts/NaN
I'm not sure what purpose these “+” served?!pull/930/head
parent
787449c12f
commit
d82de360c1
|
@ -19,7 +19,7 @@ export default class StatusHeader extends React.PureComponent {
|
|||
// Handles clicks on account name/image
|
||||
handleAccountClick = (e) => {
|
||||
const { status, parseClick } = this.props;
|
||||
parseClick(e, `/accounts/${+status.getIn(['account', 'id'])}`);
|
||||
parseClick(e, `/accounts/${status.getIn(['account', 'id'])}`);
|
||||
}
|
||||
|
||||
// Rendering.
|
||||
|
|
|
@ -15,7 +15,7 @@ export default class StatusPrepend extends React.PureComponent {
|
|||
|
||||
handleClick = (e) => {
|
||||
const { account, parseClick } = this.props;
|
||||
parseClick(e, `/accounts/${+account.get('id')}`);
|
||||
parseClick(e, `/accounts/${account.get('id')}`);
|
||||
}
|
||||
|
||||
Message = () => {
|
||||
|
|
Loading…
Reference in New Issue