mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[fix] Bug: Yahoo results for simplified Chinese search sometimes have the first character cut off #2866
Co-authored-by: Blair Noctis <n@sail.ng>
This commit is contained in:
		
							parent
							
								
									fb88721532
								
							
						
					
					
						commit
						d4d9f2073e
					
				
					 1 changed files with 1 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -133,12 +133,7 @@ def response(resp):
 | 
			
		|||
            continue
 | 
			
		||||
        url = parse_url(url)
 | 
			
		||||
 | 
			
		||||
        title = eval_xpath_getindex(result, './/h3/a', 0, default=None)
 | 
			
		||||
        if title is None:
 | 
			
		||||
            continue
 | 
			
		||||
        offset = len(extract_text(title.xpath('span')))
 | 
			
		||||
        title = extract_text(title)[offset:]
 | 
			
		||||
 | 
			
		||||
        title = extract_text(result.xpath('.//h3//a/@aria-label'))
 | 
			
		||||
        content = eval_xpath_getindex(result, './/div[contains(@class, "compText")]', 0, default='')
 | 
			
		||||
        content = extract_text(content, allow_none=True)
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue