From 11a84f49264ab459c2dab0f2ca3586ad78f99db6 Mon Sep 17 00:00:00 2001 From: Lev Date: Fri, 17 Apr 2026 23:11:41 +0300 Subject: [PATCH] comment --- API/utils/xui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/API/utils/xui.py b/API/utils/xui.py index 9badfd9..4817b99 100644 --- a/API/utils/xui.py +++ b/API/utils/xui.py @@ -123,6 +123,7 @@ class XUIClient: resp.raise_for_status() if self.version == "legacy": resp = await self.session.post(f"{self.base_url}/panel/inbound/addClient", json=configs.legacy_payload(resp.json())) + #New configs here else: raise HTTPException( status_code=500, @@ -133,6 +134,7 @@ class XUIClient: resp.raise_for_status() if self.version == "legacy": return configs.legacy_config(resp.json()) + #New configs here else: raise HTTPException( status_code=500,