From ec33be03ac5f5344a527979d4b42c6673088ec84 Mon Sep 17 00:00:00 2001 From: fantasticbin Date: Mon, 3 Mar 2025 17:00:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=94=E4=BD=8D=E5=AD=97?= =?UTF-8?q?=E7=AC=A6=E7=9A=84=E5=B0=81=E9=9D=A2=E5=90=8D=E7=A7=B0=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crawler.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/crawler.go b/crawler.go index 97d4b34..574790a 100644 --- a/crawler.go +++ b/crawler.go @@ -111,6 +111,15 @@ func (c *Crawler) fetchCoverImg(code string) error { imgUrl := strings.ReplaceAll(c.config.GetString("crawler.url"), `*`, code) suffix := filepath.Ext(imgUrl) nameSlice := strings.Split(code, "00") + + if len(nameSlice) < 2 { + return nil + } + + if len(nameSlice[0]) > 4 { + nameSlice[0] = nameSlice[0][1:] + } + fileName := strings.Join([]string{ c.outputPath, string(os.PathSeparator),