Fixed the German HTML search again, this time from the 1.7 branch

This commit is contained in:
Dennis Wegner 2018-04-20 17:51:19 +02:00
parent ec47b66887
commit b650ba2401

View File

@ -311,4 +311,4 @@ class SearchGerman(SearchLanguage):
self.stemmer = snowballstemmer.stemmer('german')
def stem(self, word):
return self.stemmer.stemWord(word)
return self.stemmer.stemWord(word.lower())