diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-02-21 21:13:12 +0100 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-02-22 17:52:21 +0100 |
commit | d82de360c13894746d3974d11c9505c8937ebdee (patch) | |
tree | 7cf7747d18c268c2514766e2ee77a3e63c423feb /app | |
parent | 787449c12f121737c4319ec274300fa9a330fe9b (diff) |
Fix non-numeric account identifiers leading to /web/accounts/NaN
I'm not sure what purpose these “+” served?!
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/components/status_header.js | 2 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/components/status_prepend.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/components/status_header.js b/app/javascript/flavours/glitch/components/status_header.js index 65458e3f0..f9321904c 100644 --- a/app/javascript/flavours/glitch/components/status_header.js +++ b/app/javascript/flavours/glitch/components/status_header.js @@ -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. diff --git a/app/javascript/flavours/glitch/components/status_prepend.js b/app/javascript/flavours/glitch/components/status_prepend.js index f4ef83135..4e329f546 100644 --- a/app/javascript/flavours/glitch/components/status_prepend.js +++ b/app/javascript/flavours/glitch/components/status_prepend.js @@ -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 = () => { |