From 9480bc0379c17edcf6039776d2ba51b4e211b2ee Mon Sep 17 00:00:00 2001 From: yuhan6665 <1588741+yuhan6665@users.noreply.github.com> Date: Sat, 2 Jul 2022 11:26:24 -0400 Subject: [PATCH] Fix ss2022 user stat for single user --- infra/conf/shadowsocks.go | 1 + 1 file changed, 1 insertion(+) diff --git a/infra/conf/shadowsocks.go b/infra/conf/shadowsocks.go index e8607993..2b5f2a8a 100644 --- a/infra/conf/shadowsocks.go +++ b/infra/conf/shadowsocks.go @@ -80,6 +80,7 @@ func (v *ShadowsocksServerConfig) Build() (proto.Message, error) { config.Method = v.Cipher config.Key = v.Password config.Network = v.NetworkList.Build() + config.Email = v.Email return config, nil }