From 22478bd81839b5bbe415082b2c37de5e71afa3f9 Mon Sep 17 00:00:00 2001 From: eson <474420502@qq.com> Date: Fri, 21 Dec 2018 18:08:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20ParseRawCURL=20=E6=8A=A5=E9=94=99?= =?UTF-8?q?=E5=90=8E=E6=97=A0=E6=B3=95=E5=AE=9A=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- person.go | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/person.go b/person.go index 75c70b5..2428a8f 100644 --- a/person.go +++ b/person.go @@ -86,10 +86,7 @@ func splitTasks(conf *Config) []ITask { var tasks []ITask proxies := (*clinked.CircularLinked)(conf.Proxies) for _, scurl := range conf.Curls { - curl, err := curl2info.ParseRawCURL(scurl) - if err != nil { - panic(err) - } + curl := curl2info.ParseRawCURL(scurl) if curl.ITask == "" { curl.ITask = conf.ITask @@ -112,10 +109,7 @@ func splitTasks(conf *Config) []ITask { for _, cnode := range proxies.GetLoopValues() { proxy := cnode.GetValue().(string) - ncurl, err := curl2info.ParseRawCURL(scurl) - if err != nil { - panic(err) - } + ncurl := curl2info.ParseRawCURL(scurl) if curl.ITask == "" { curl.ITask = conf.ITask