diff options
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/components/status_content.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/components/status_content.js b/app/javascript/flavours/glitch/components/status_content.js index 20e640bcb..f8b101dc4 100644 --- a/app/javascript/flavours/glitch/components/status_content.js +++ b/app/javascript/flavours/glitch/components/status_content.js @@ -116,9 +116,9 @@ export default class StatusContent extends React.PureComponent { link.insertAdjacentText('beforeend', ' '); link.insertAdjacentElement('beforeend', tag); } - } catch (TypeError) { - // Just to be safe - if (tagLinks) link.removeAttribute('href'); + } catch (e) { + // The URL is invalid, remove the href just to be safe + if (tagLinks && e instanceof TypeError) link.removeAttribute('href'); } } |