fix weird bug with author hints
authorJan Szejko <janek37@gmail.com>
Mon, 18 Dec 2017 14:05:20 +0000 (15:05 +0100)
committerJan Szejko <janek37@gmail.com>
Mon, 18 Dec 2017 14:05:20 +0000 (15:05 +0100)
src/search/views.py

index 64382e2..309db73 100644 (file)
@@ -75,7 +75,7 @@ def hint(request):
             limit = 20
 
     authors = Tag.objects.filter(
-        category='author', name__iregex='\m' + prefix).only('name', 'id', 'slug', 'category')
+        category='author', name_pl__iregex='\m' + prefix).only('name', 'id', 'slug', 'category')
     data = [
         {
             'label': author.name,