Browse Source

[Glitch] Fix `nofollow` rel being removed in web UI

Port 9757c917da to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
closed-social-glitch-2
Eugen Rochko 2 years ago
committed by Claire
parent
commit
a2942fd0b8
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/javascript/flavours/glitch/components/status_content.js

+ 3
- 3
app/javascript/flavours/glitch/components/status_content.js View File

@ -124,6 +124,9 @@ export default class StatusContent extends React.PureComponent {
link.setAttribute('title', link.href);
link.classList.add('unhandled-link');
link.setAttribute('target', '_blank');
link.setAttribute('rel', 'noopener nofollow noreferrer');
try {
if (tagLinks && isLinkMisleading(link)) {
// Add a tag besides the link to display its origin
@ -149,9 +152,6 @@ export default class StatusContent extends React.PureComponent {
if (tagLinks && e instanceof TypeError) link.removeAttribute('href');
}
}
link.setAttribute('target', '_blank');
link.setAttribute('rel', 'noopener noreferrer');
}
}

Loading…
Cancel
Save