fix
This commit is contained in:
parent
44a775a408
commit
94c5032758
@ -24,8 +24,7 @@ class comicEntity:
|
||||
@classmethod
|
||||
def oneComic(cls,c_url,sleep=None,date=comicInfo.getUpdateAt()):
|
||||
if c_url == None: return None
|
||||
#漫画名
|
||||
title = htmlUtils.xpathData('//div[@class="col"]/h5/text()',url=c_url,num=0)
|
||||
title = htmlUtils.xpathData('//div[@class="col"]/h5/text()',url=c_url,num=0,update=True)
|
||||
#别名
|
||||
#alias = htmlUtils.xpathData('//span[contains(@class,"bookid_alias")]/text()',num=1)
|
||||
icon = htmlUtils.xpathData('//img[@class="img-thumbnail"]/@src',num=0)
|
||||
|
||||
@ -15,7 +15,7 @@ class comicCommon:
|
||||
|
||||
@classmethod
|
||||
def comicChapterDownload(cls,chapter_url):
|
||||
x = cls.baseComicData(chapter_url)
|
||||
x = cls.baseComicData(chapter_url,update=True)
|
||||
book_name = x.get("bookName")
|
||||
chapter_name = x.get("chapterName")
|
||||
#fileUtils.saveConfComicChapterInfo(chapterName,x,bookName)
|
||||
@ -34,7 +34,7 @@ class comicCommon:
|
||||
base_url = comicInfo.getBaseUrl(chapter_url)
|
||||
chapter_api_url = base_url+chapter_api_path
|
||||
ntfy.sendMsg(f"chapterApiUrl= {chapter_api_url}",alert=False)
|
||||
data = htmlUtils.getJSON(chapter_api_url)
|
||||
data = htmlUtils.getJSON(chapter_api_url,update=True)
|
||||
if data != None:
|
||||
data = data.get("chapter")
|
||||
(chapter_name,images) = [data.get("name"),data.get("images")]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user