From a5aeb32f194f2122a17e94586bf2268d2f061433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AB=8F=E8=A8=AA=E5=AD=90?= Date: Mon, 13 Nov 2023 16:02:01 +0900 Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E7=89=88=E7=A4=BE=E3=83=9A=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=81=AE=E3=83=9A=E3=83=BC=E3=82=B8=E3=83=8D=E3=83=BC?= =?UTF-8?q?=E3=82=B7=E3=83=A7=E3=83=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- page.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page.go b/page.go index be1e257..b9a11da 100644 --- a/page.go +++ b/page.go @@ -80,7 +80,7 @@ func isarticle(url string) bool { /* 出版社かの確認 */ func ispublish(url string) bool { chk := strings.Split(url, "=") - return len(chk) > 1 && chk[0] == "/list_news_media.pl?id" + return len(chk) > 1 && (chk[0] == "/list_news_media.pl?id" || chk[0] == "/list_news_media.pl?page") } /* カテゴリーだけが残るまで消す */