Working on isolating a bug in the lnbits lnurlp extension where send zap appears to freeze up the main lnbits app after receiving a zap payment.
Small test zaps needed to test the fix.

GitHub
fix(tasks): Make send_zap non-blocking to prevent freezes · santyr/lnurlp@38cc684
The send_zap async function contained blocking calls (thread.join()) which halted the main asyncio event loop. This caused the application to becom...


