From 05317eb5d6ab8175ee64f6fac935c9afc3d3816f Mon Sep 17 00:00:00 2001 From: Ben Arc Date: Mon, 19 Apr 2021 09:50:42 +0100 Subject: [PATCH] payment webhook set to false exernal --- lnbits/extensions/copilot/lnurl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnbits/extensions/copilot/lnurl.py b/lnbits/extensions/copilot/lnurl.py index d3c37ab9..8af6a2ae 100644 --- a/lnbits/extensions/copilot/lnurl.py +++ b/lnbits/extensions/copilot/lnurl.py @@ -76,7 +76,7 @@ async def lnurl_callback(cp_id): copilot_id=cp_id, amount=int(amount_received / 1000), comment=comment, - _external=True, + _external=False, ))[:-1], description_hash=hashlib.sha256( ( @@ -97,7 +97,7 @@ async def lnurl_callback(cp_id): copilot_id=cp_id, amount=int(amount_received / 1000), comment=comment, - _external=True, + _external=False, ))[:-1] ) return jsonify(resp.dict())