Fix crash parsing Lightning URL
Fixes https://gitlab.com/soapbox-pub/ditto/-/issues/139
This commit is contained in:
parent
78b9c62af3
commit
6861dc1d57
|
@ -28,8 +28,12 @@ function getLnurl({ lud06, lud16 }: { lud06?: string; lud16?: string }, limit?:
|
||||||
if (lud16) {
|
if (lud16) {
|
||||||
const [name, host] = lud16.split('@');
|
const [name, host] = lud16.split('@');
|
||||||
if (name && host) {
|
if (name && host) {
|
||||||
const url = new URL(`/.well-known/lnurlp/${name}`, `https://${host}`);
|
try {
|
||||||
return LNURL.encode(url, limit);
|
const url = new URL(`/.well-known/lnurlp/${name}`, `https://${host}`);
|
||||||
|
return LNURL.encode(url, limit);
|
||||||
|
} catch {
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue