diff --git a/lnbits/core/views/public_api.py b/lnbits/core/views/public_api.py index a1aeec436..9d56834cf 100644 --- a/lnbits/core/views/public_api.py +++ b/lnbits/core/views/public_api.py @@ -16,9 +16,10 @@ from ..tasks import api_invoice_listeners @core_app.get("/.well-known/lnurlp/{username}") async def lnaddress(username: str, request: Request): from lnbits.extensions.lnaddress.lnurl import lnurl_response - domain = request.client - root_url = urlparse(str(request.url)).netloc - print("client", root_url, request.client) + + # domain = request.client + domain = urlparse(str(request.url)).netloc + # print("client", root_url, request.client) return await lnurl_response(username, domain, request)