mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	Autocomplete: don't suggest the current query.
Example of minor issue before this commit: the autocompletion can suggest "Test" if the query is "Test".
This commit is contained in:
		
							parent
							
								
									2455f1d06a
								
							
						
					
					
						commit
						ee3f230d93
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -909,7 +909,8 @@ def autocompleter():
 | 
			
		|||
        for result in raw_results:
 | 
			
		||||
            # attention: this loop will change raw_text_query object and this is
 | 
			
		||||
            # the reason why the sug_prefix was stored before (see above)
 | 
			
		||||
            results.append(raw_text_query.changeQuery(result).getFullQuery())
 | 
			
		||||
            if result != sug_prefix:
 | 
			
		||||
                results.append(raw_text_query.changeQuery(result).getFullQuery())
 | 
			
		||||
 | 
			
		||||
    if len(raw_text_query.autocomplete_list) > 0:
 | 
			
		||||
        for autocomplete_text in raw_text_query.autocomplete_list:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue