diff --git a/bookwyrm/templatetags/fr_display.py b/bookwyrm/templatetags/fr_display.py index 0595ff522..52cb3c47e 100644 --- a/bookwyrm/templatetags/fr_display.py +++ b/bookwyrm/templatetags/fr_display.py @@ -116,7 +116,7 @@ def get_book_description(book): def text_overflow(text): ''' dont' let book descriptions run for ages ''' if not text: - return + return '' char_max = 500 if text and len(text) < char_max: return text