Fix crash decoding url

This commit is contained in:
Alex Gleason 2024-05-18 08:20:43 -05:00
parent 3e93b42251
commit 6ac4c072a6
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ const linkifyOpts: linkify.Opts = {
return `<a class=\"mention hashtag\" href=\"${href}\" rel=\"tag\"><span>#</span>${tag}</a>`;
},
url: ({ content }) => {
if (nip21.test(content)) {
try {
const { decoded } = nip21.parse(content);
const pubkey = getDecodedPubkey(decoded);
if (pubkey) {
@ -28,7 +28,7 @@ const linkifyOpts: linkify.Opts = {
} else {
return '';
}
} else {
} catch {
return `<a href="${content}">${content}</a>`;
}
},