getAlby / lightning-browser-extension

The Bitcoin Lightning Browser Extension that brings deep Lightning & Nostr integration to the web. Wallet interface to multiple lightning nodes and key signer for Nostr, Liquid and onchain use.
https://getalby.com/#extension
MIT License
540 stars 194 forks source link

fix: lnaddress containing lnurl prefixes #3228

Closed pavanjoshi914 closed 2 months ago

pavanjoshi914 commented 2 months ago

Fixes #3227

before: if its not lnurl then we check for lnaddress. but sometimes lnaddress containing "lnurl" in it makes isLnurl = true leading to potential errors

after: we check for both lnaddress and lnurl separately.

pavanjoshi914 commented 2 months ago

tAck