From 39559cccb9f721609e61543fa437f86d682d87db Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 23 Jan 2023 21:15:43 +0000 Subject: [PATCH] Removes https in super user link --- lnbits/core/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/core/services.py b/lnbits/core/services.py index eefb2f990..72ee543c9 100644 --- a/lnbits/core/services.py +++ b/lnbits/core/services.py @@ -434,7 +434,7 @@ async def check_admin_settings(): http = "https" if settings.lnbits_force_https else "http" admin_url = ( - f"{http}://{settings.host}:{settings.port}/wallet?usr={settings.super_user}" + f"http://{settings.host}:{settings.port}/wallet?usr={settings.super_user}" ) logger.success(f"✔️ Access super user account at: {admin_url}")