mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-02 11:51:49 +02:00
adapter_storiesonlinenet: Fix for chapter select getting cover image link.
This commit is contained in:
parent
3ddf801925
commit
2f52ae31c0
1 changed files with 1 additions and 1 deletions
|
|
@ -228,7 +228,7 @@ class StoriesOnlineNetAdapter(BaseSiteAdapter):
|
|||
# Find the chapters:
|
||||
# <a href="/s/00001/This-is-a-test/1">Chapter 1</a>
|
||||
# <a href="/n/00001/This-is-a-test/1">Chapter 1</a>
|
||||
chapters = soup.select('div#index-list a[href*="/s/"],a[href*="/n/"]')
|
||||
chapters = soup.select('div#index-list a[href*="/s/"],div#index-list a[href*="/n/"]')
|
||||
logger.debug(chapters)
|
||||
if len(chapters) != 0:
|
||||
logger.debug("Number of chapters: {0}".format(len(chapters)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue