Skip to content

Commit

Permalink
Update novel_search.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dipu-bd authored May 11, 2024
1 parent daff5b2 commit f27714f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lncrawl/core/novel_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def search_novels(app):
for item in f.result() or []:
if not (item and item.title):
continue
key = slugify(item.title)
key = slugify(str(item.title))
if len(key) <= 2:
continue
combined.setdefault(key, [])
Expand Down

0 comments on commit f27714f

Please sign in to comment.