From f27714f5a34f2fd7a6f125b18e1db5d842e6e75d Mon Sep 17 00:00:00 2001 From: Sudipto Chandra Date: Sat, 11 May 2024 09:03:53 +0400 Subject: [PATCH] Update novel_search.py --- lncrawl/core/novel_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lncrawl/core/novel_search.py b/lncrawl/core/novel_search.py index 7382c3d6e..6f80ad6cb 100644 --- a/lncrawl/core/novel_search.py +++ b/lncrawl/core/novel_search.py @@ -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, [])