mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-25 09:41:46 +01:00
adapter_literotica: Get series ID from data object (#1290)
This commit is contained in:
parent
99bba3ff12
commit
e0907147f7
1 changed files with 1 additions and 1 deletions
|
|
@ -374,7 +374,7 @@ class LiteroticaSiteAdapter(BaseSiteAdapter):
|
|||
## alternate chapters from JSON
|
||||
if self.num_chapters() < 1:
|
||||
logger.debug("Getting Chapters from series JSON")
|
||||
seriesid = json_state.get('series',{}).get('coversSeriesId',None)
|
||||
seriesid = json_state.get('series',{}).get('data',{}).get('id',None)
|
||||
if seriesid:
|
||||
logger.info("Fetching chapter data from JSON")
|
||||
logger.debug(seriesid)
|
||||
|
|
|
|||
Loading…
Reference in a new issue