forum: workaround for building index with safety margin

This commit is contained in:
Antoine Bartuccio 2018-12-10 13:20:10 +01:00 committed by Skia
parent 269242601a
commit ee99ec1aed
1 changed files with 1 additions and 3 deletions

View File

@ -29,8 +29,6 @@ from haystack import indexes, signals
from core.models import User
from forum.models import ForumMessage
from unicodedata import normalize
class UserIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
@ -66,7 +64,7 @@ class BigCharFieldIndex(indexes.CharField):
"""
def prepare(self, term):
return normalize("NFKC", super(BigCharFieldIndex, self).prepare(term))[:245]
return super(BigCharFieldIndex, self).prepare(term)[:240]
class ForumMessageIndex(indexes.SearchIndex, indexes.Indexable):