From 24f71f9acbed2544d341f59f69dca9246c6a7dcd Mon Sep 17 00:00:00 2001 From: fantasticbin Date: Sun, 2 Mar 2025 07:52:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=95=AA=E5=8F=B7=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crawler.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crawler.go b/crawler.go index 0f77720..b8b3ce2 100644 --- a/crawler.go +++ b/crawler.go @@ -80,6 +80,11 @@ func (c *Crawler) getCodeNum(s string) int { // 获取封面代码列表 func (c *Crawler) getCoverCodeList(files []string) (coverList []string, err error) { for _, file := range files { + // 去除域名部分 + if strings.IndexRune(file, '@') > 0 { + file = strings.Split(file, "@")[1] + } + nameSlice := strings.Split(file, "-") if len(nameSlice) < 2 || len(nameSlice[0]) > 5 { continue @@ -146,7 +151,6 @@ func (c *Crawler) fetchCoverImg(code string) error { } // 图片高度未到达配置最低值则抛弃 - fmt.Println(img.Width, img.Height) if img.Height < c.config.GetInt("crawler.minHeight") { return nil }