From b79664712d1ed20be2f5df744cf490853ebb38db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=90=B2=93=F0=90=B3=9B=F0=90=B3=AA=F0=90=B3=82?= =?UTF-8?q?=F0=90=B3=90=20=F0=90=B2=80=F0=90=B3=A2=F0=90=B3=A6=F0=90=B3=AB?= =?UTF-8?q?=F0=90=B3=A2=20=F0=90=B2=A5=F0=90=B3=94=F0=90=B3=9B=F0=90=B3=AA?= =?UTF-8?q?=F0=90=B3=8C=F0=90=B3=91=F0=90=B3=96=F0=90=B3=87?= <26771058+KobeArthurScofield@users.noreply.github.com> Date: Wed, 10 Sep 2025 20:31:31 +0800 Subject: [PATCH] Fix missing --- infra/conf/http.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/conf/http.go b/infra/conf/http.go index 9a2e54b9..9232a21c 100644 --- a/infra/conf/http.go +++ b/infra/conf/http.go @@ -53,8 +53,8 @@ type HTTPRemoteConfig struct { type HTTPClientConfig struct { Address *Address `json:"address"` Port uint16 `json:"port"` - Username string `json:user` - Password string `json:pass` + Username string `json:"user"` + Password string `json:"pass"` Level uint32 `json:"level"` Email string `json:"email"` Servers []*HTTPRemoteConfig `json:"servers"`