mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	[fix] google_news: avoid one HTTP redirect except for the English results
also add params['soft_max_redirects'] = 1 to avoid false error reporting in /stats/errors
This commit is contained in:
		
							parent
							
								
									7d24850d49
								
							
						
					
					
						commit
						8c46b767d0
					
				@ -85,7 +85,7 @@ def request(query, params):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    query_url = 'https://'+ subdomain + '/search' + "?" + urlencode({
 | 
					    query_url = 'https://'+ subdomain + '/search' + "?" + urlencode({
 | 
				
			||||||
        'q': query,
 | 
					        'q': query,
 | 
				
			||||||
        'hl': lang_country,
 | 
					        'hl': language,
 | 
				
			||||||
        'lr': "lang_" + language,
 | 
					        'lr': "lang_" + language,
 | 
				
			||||||
        'ie': "utf8",
 | 
					        'ie': "utf8",
 | 
				
			||||||
        'oe': "utf8",
 | 
					        'oe': "utf8",
 | 
				
			||||||
@ -108,6 +108,10 @@ def request(query, params):
 | 
				
			|||||||
    params['headers']['Accept'] = (
 | 
					    params['headers']['Accept'] = (
 | 
				
			||||||
        'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8'
 | 
					        'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8'
 | 
				
			||||||
        )
 | 
					        )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    # hl=en redirect to hl=en-US / en-CA ...
 | 
				
			||||||
 | 
					    params['soft_max_redirects'] = 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    #params['google_subdomain'] = subdomain
 | 
					    #params['google_subdomain'] = subdomain
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return params
 | 
					    return params
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user