mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	Merge pull request #588 from dalf/fix-imdb
[fix] imdb: don't crash when there is no result
This commit is contained in:
		
						commit
						24c7d6300e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -57,7 +57,7 @@ def response(resp):
 | 
			
		|||
    suggestions = json.loads(resp.text)
 | 
			
		||||
    results = []
 | 
			
		||||
 | 
			
		||||
    for entry in suggestions['d']:
 | 
			
		||||
    for entry in suggestions.get('d', []):
 | 
			
		||||
 | 
			
		||||
        # https://developer.imdb.com/documentation/key-concepts#imdb-ids
 | 
			
		||||
        entry_id = entry['id']
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue