X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7f28c3c68a94ae277c7b6358bdcd762b483fa657..45b0231e99c7f53d29bc3b07a2ce2a0957058265:/catalogue/models.py diff --git a/catalogue/models.py b/catalogue/models.py index e9c8928dc..c82cf4356 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -163,8 +163,8 @@ class Book(models.Model): for fragment in closed_fragments.values(): text = fragment.to_string() short_text = '' - if (len(re.sub(r'', '', text)) > 400): - short_text = MarkupString(text)[:240] + if (len(re.sub(r'', '', text)) > 240): + short_text = MarkupString(text)[:160] new_fragment = Fragment(text=text, short_text=short_text, anchor=fragment.id, book=book) theme_names = [s.strip() for s in fragment.themes.split(',')]