Skip to content

Commit

Permalink
fix crash on kakuyomu download, no toc parser yet
Browse files Browse the repository at this point in the history
  • Loading branch information
safirex committed Jun 25, 2023
1 parent 54d3f8f commit c0653e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Downloaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,10 @@ def parseTitle(self, TocHTML):
# '<p class="widget-episodeTitle js-vertical-composition-item">(.*?)<', TocHTML)[0]
return chapter_title

def parseTocResume(self, html=''):
print("no toc resume parser")
pass

def parseOnlineChapterList(self, html) -> list:
soup = BeautifulSoup(html, 'html.parser')
# print(soup.find_all("a", "widget-toc-chapter"))
Expand Down

0 comments on commit c0653e9

Please sign in to comment.