Fix up try/catch block in invalid URL handling

master
Thibaut Girka 2019-08-06 12:56:19 +02:00 committed by ThibG
parent cbd75fe128
commit 3ea7a334d8
1 changed files with 3 additions and 3 deletions

View File

@ -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');
}
}