From 1e06ad987af8a9cd656fdea62560c9be7f81c743 Mon Sep 17 00:00:00 2001 From: varthe <59516353+varthe@users.noreply.github.com> Date: Sun, 30 Nov 2025 00:36:15 +0100 Subject: [PATCH] fix(frontend): added missing space to proxy url (#515) --- packages/frontend/src/components/menu/proxy.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/components/menu/proxy.tsx b/packages/frontend/src/components/menu/proxy.tsx index b739d684..d3079c5e 100644 --- a/packages/frontend/src/components/menu/proxy.tsx +++ b/packages/frontend/src/components/menu/proxy.tsx @@ -183,13 +183,13 @@ function Content() { ? 'stremthru:8080' : 'mediaflow-proxy:8888' : 'mediaflow-proxy:8888'} - as the URL above but then using https:// + as the URL above but then using https:// {userData.proxy?.id ? userData.proxy.id === 'stremthru' ? 'stremthru.yourdomain.com' : 'mediaflow-proxy.yourdomain.com' : 'mediaflow-proxy.yourdomain.com'} - as the public URL. + as the public URL.

)}