mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-07 12:02:25 +02:00
adapter_literotica: Fix for numeric tag value from json. #1336
This commit is contained in:
parent
730c4f77f9
commit
cf02f729ae
1 changed files with 1 additions and 1 deletions
|
|
@ -395,7 +395,7 @@ class LiteroticaSiteAdapter(BaseSiteAdapter):
|
|||
|
||||
## Collect tags from series/story page if tags_from_chapters is enabled
|
||||
if self.getConfig("tags_from_chapters"):
|
||||
self.story.extendList('eroticatags', [ stripHTML(t['tag']).title() for t in chap['tags'] ])
|
||||
self.story.extendList('eroticatags', [ unicode(t['tag']).title() for t in chap['tags'] ])
|
||||
|
||||
|
||||
except Exception as e:
|
||||
|
|
|
|||
Loading…
Reference in a new issue