fix: only add nostr: for valid nip19
This commit is contained in:
@@ -1,6 +1,13 @@
|
|||||||
|
import { nip19 } from 'nostr-tools'
|
||||||
|
|
||||||
export function preprocessContent(content: string) {
|
export function preprocessContent(content: string) {
|
||||||
const regex = /(?<=^|\s)(nevent|naddr|nprofile|npub)[a-zA-Z0-9]+/g
|
const regex = /(?<=^|\s)(nevent|naddr|nprofile|npub)[a-zA-Z0-9]+/g
|
||||||
return content.replace(regex, (match) => {
|
return content.replace(regex, (match) => {
|
||||||
|
try {
|
||||||
|
nip19.decode(match)
|
||||||
return `nostr:${match}`
|
return `nostr:${match}`
|
||||||
|
} catch {
|
||||||
|
return match
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user