about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-09-30 11:47:58 +0200
committerClaire <claire.github-309c@sitedethib.com>2021-09-30 12:31:08 +0200
commitb31748a496ac55e3f2763d74ea7e7a7ef5c4dfad (patch)
tree1388104d1280db685de2b87fbb9a1b151c2e6079
parente660a7bbb0877b1a05b64efe4d9e4a156f0b026e (diff)
Fix clicking on account name in “[xxx] boosted” text leading to broken path
-rw-r--r--app/javascript/flavours/glitch/components/status_prepend.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/status_prepend.js b/app/javascript/flavours/glitch/components/status_prepend.js
index 5f8d70c9a..5a00f232e 100644
--- a/app/javascript/flavours/glitch/components/status_prepend.js
+++ b/app/javascript/flavours/glitch/components/status_prepend.js
@@ -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 = () => {