From a3762f70b0069bd48c7bbb13ee57a2679c3d3841 Mon Sep 17 00:00:00 2001 From: Scroogey-SN Date: Mon, 17 Mar 2025 18:16:31 +0000 Subject: [PATCH] fix #1959 strip trailing slashes from url (#1973) --- wallets/lnbits/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallets/lnbits/server.js b/wallets/lnbits/server.js index 5bc72826..310dc2d1 100644 --- a/wallets/lnbits/server.js +++ b/wallets/lnbits/server.js @@ -33,7 +33,7 @@ export async function createInvoice ( out: false }) - let hostname = url.replace(/^https?:\/\//, '') + let hostname = url.replace(/^https?:\/\//, '').replace(/\/+$/, '') const agent = getAgent({ hostname }) if (process.env.NODE_ENV !== 'production' && hostname.startsWith('localhost:')) {