mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-30 14:06:28 +02:00
catch error on redeem_lnurl_withdraw call.
This commit is contained in:
@@ -229,10 +229,10 @@ async def redeem_lnurl_withdraw(
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
async with httpx.AsyncClient() as client:
|
async with httpx.AsyncClient() as client:
|
||||||
await client.get(
|
try:
|
||||||
res["callback"],
|
await client.get(res["callback"], params=params)
|
||||||
params=params,
|
except Exception:
|
||||||
)
|
pass
|
||||||
|
|
||||||
|
|
||||||
async def perform_lnurlauth(
|
async def perform_lnurlauth(
|
||||||
|
Reference in New Issue
Block a user