mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix up try/catch block in invalid URL handling
This commit is contained in:
parent
cbd75fe128
commit
3ea7a334d8
@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user