From 646c34184020ea827cf0f736b9d2ca95d83db0a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Fri, 13 Dec 2024 08:25:44 +0100 Subject: [PATCH] fix const req (#2824) --- lnbits/static/js/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/static/js/wallet.js b/lnbits/static/js/wallet.js index 7c925b40..07ac8a55 100644 --- a/lnbits/static/js/wallet.js +++ b/lnbits/static/js/wallet.js @@ -291,7 +291,7 @@ window.app = Vue.createApp({ decodeRequest() { this.parse.show = true this.parse.data.request = this.parse.data.request.trim().toLowerCase() - const req = this.parse.data.request + let req = this.parse.data.request if (req.startsWith('lightning:')) { this.parse.data.request = req.slice(10) } else if (req.startsWith('lnurl:')) {