diff --git a/core/utils/db.py b/core/utils/db.py index 0371879c..c4b61c86 100644 --- a/core/utils/db.py +++ b/core/utils/db.py @@ -21,7 +21,7 @@ def list_to_queryset(model: Model, data: list): def unicode_slugify_function(content): return slugify( - text=content, + text=str(content), allow_unicode=True, max_length=88, word_boundary=True,