mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 14:53:06 +02:00
Fix cracked.com
This commit is contained in:
parent
632d348d1a
commit
5f81108d5c
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ def appendPage(self, soup, appendTag, position):
|
|||
pageNav = soup.find('nav', attrs={'class': 'PaginationContent'})
|
||||
if pageNav:
|
||||
# Check not at last page
|
||||
nextPage = pageNav.find('a', attrs={'class': 'next'})
|
||||
nextPage = pageNav.find('a', attrs={'class': 'next nativePagination'})
|
||||
if nextPage:
|
||||
nextPageURL = nextPage['href']
|
||||
nextPageSoup = self.index_to_soup(nextPageURL)
|
||||
|
|
|
|||
Loading…
Reference in a new issue