From 1075b5bbaf77793b5a197ffa5e7e453b6460439d Mon Sep 17 00:00:00 2001 From: eson <474420502@qq.com> Date: Fri, 21 Dec 2018 18:23:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=A9=BA=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.go | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/config.go b/config.go index ed7fd41..5feb1f8 100644 --- a/config.go +++ b/config.go @@ -27,16 +27,21 @@ func (curls *YamlCurls) UnmarshalYAML(unmarshal func(interface{}) error) error { switch tbuf := buf.(type) { case string: - - for _, curlinfo := range parseCurl(tbuf) { - *curls = append(*curls, curlinfo) + if tbuf != "" { + for _, curlinfo := range parseCurl(tbuf) { + *curls = append(*curls, curlinfo) + } } case []interface{}: for _, ifa := range tbuf { - for _, curlinfo := range parseCurl(ifa.(string)) { - *curls = append(*curls, curlinfo) + curlstr := ifa.(string) + if curlstr != "" { + for _, curlinfo := range parseCurl(curlstr) { + *curls = append(*curls, curlinfo) + } } + } default: return errors.New("read curls is error, " + reflect.TypeOf(buf).String())