forked from zaclys/searxng
		
	[mod] currency_convert: support for showing the answer source url
Show URL of the ddg-search page, not the URL of a (generic) Javascript. The latter one is not usefull for the user. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
		
							parent
							
								
									3b2a2e28fa
								
							
						
					
					
						commit
						8ef0b60ef9
					
				
					 1 changed files with 1 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -47,10 +47,7 @@ def response(resp):
 | 
			
		|||
        resp.search_params['to_name'],
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'.format(
 | 
			
		||||
        resp.search_params['from'].upper(), resp.search_params['to']
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    url = f"https://duckduckgo.com/?q={resp.search_params['from']}+to+{resp.search_params['to']}"
 | 
			
		||||
    results.append({'answer': answer, 'url': url})
 | 
			
		||||
 | 
			
		||||
    return results
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue