adapter_literotica: Fix for numeric tag value from json. #1336

This commit is contained in:
Jim Miller 2026-04-19 14:08:21 -05:00
parent 730c4f77f9
commit cf02f729ae

View file

@ -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: