diff --git a/README.md b/README.md index f5807bb..85f2acd 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ https://github.com/missdeer/getnovel/releases ## 内建支持网站 * 飘天: https://www.piaotia.com -* UU看书: https://www.uukanshu.com +* UU看书: https://www.uukanshu.net ## 注意 diff --git a/uukanshu.go b/uukanshu.go index 211ef22..1f85cf2 100644 --- a/uukanshu.go +++ b/uukanshu.go @@ -99,9 +99,9 @@ func extractUukanshuChapterContent(rawPageContent []byte) (c []byte) { func init() { registerNovelSiteHandler(&NovelSiteHandler{ Title: `UU看书`, - Urls: []string{`https://www.uukanshu.com/`}, + Urls: []string{`https://www.uukanshu.net/`}, CanHandle: func(u string) bool { - reg := regexp.MustCompile(`https://www\.uukanshu\.com/b/[0-9]+/`) + reg := regexp.MustCompile(`https://www\.uukanshu\.net/b/[0-9]+/`) return reg.MatchString(u) }, ExtractChapterList: extractUukanshuChapterList,