Update server.go

This commit is contained in:
parhelia512 2025-09-18 15:36:39 +08:00 committed by GitHub
parent 35692ea6fd
commit a8941f8801
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,7 +58,7 @@ func (s *server) Start(in *gen.LoadConfigReq, out *gen.ErrorResp) (_ error) {
}
if *in.NeedExtraProcess {
args, e := shlex.Split(*in.ExtraProcessArgs)
args, e := shlex.Split(in.GetExtraProcessArgs())
if e != nil {
err = E.Cause(e, "Failed to parse args")
return