forked from zaclys/searxng
		
	Merge pull request #2036 from 999eagle/patch-yacy
Fix YaCy text results returned as images
This commit is contained in:
		
						commit
						460401293c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -75,7 +75,7 @@ def response(resp):
 | 
			
		|||
 | 
			
		||||
    for result in search_results[0].get('items', []):
 | 
			
		||||
        # parse image results
 | 
			
		||||
        if result.get('image'):
 | 
			
		||||
        if result.get('image') and result.get('width') and result.get('height'):
 | 
			
		||||
 | 
			
		||||
            result_url = ''
 | 
			
		||||
            if 'url' in result:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue