From 16c78f190120ed7e6e81b95666a348014d21753d Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Thu, 16 Jan 2025 14:19:26 +0200 Subject: [PATCH] fix: websocket prefix --- lnbits/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/templates/base.html b/lnbits/templates/base.html index 709df53d5..b0915fd8f 100644 --- a/lnbits/templates/base.html +++ b/lnbits/templates/base.html @@ -357,7 +357,7 @@ }) const websocketPrefix = window.location.protocol === 'http:' ? 'ws://' : 'wss://' - const websocketUrl = `${'http:' ? 'ws://' : 'wss://'}${window.location.host}/api/v1/ws` + const websocketUrl = `${websocketPrefix}${window.location.host}/api/v1/ws` {% block scripts %}{% endblock %} {% for url in INCLUDED_COMPONENTS %}