From 8a568d787a828e9c63b9961bfb674f4c39ac05e3 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Sun, 17 Aug 2025 16:48:31 +0800 Subject: [PATCH] Update client.py --- src/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.py b/src/client.py index 7485e795..97c94397 100644 --- a/src/client.py +++ b/src/client.py @@ -23,7 +23,7 @@ def ResponseObject(status=True, message=None, data=None, status_code = 200) -> F from modules.DashboardClients import DashboardClients def createClientBlueprint(wireguardConfigurations: dict[WireguardConfiguration], dashboardConfig: DashboardConfig, dashboardClients: DashboardClients): - client = Blueprint('client', __name__, template_folder=os.path.abspath("./static/client/dist")) + client = Blueprint('client', __name__, template_folder=os.path.abspath("./static/dist/WGDashboardClient")) prefix = f'{dashboardConfig.GetConfig("Server", "app_prefix")[1]}/client' def login_required(f):