mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-03 19:17:07 -05:00 
			
		
		
		
	[fix] valid https checking
This commit is contained in:
		
							parent
							
								
									d1e8c2365e
								
							
						
					
					
						commit
						c838492d6d
					
				@ -119,7 +119,7 @@ def opensearch():
 | 
			
		||||
    # chrome/chromium only supports HTTP GET....
 | 
			
		||||
    if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
 | 
			
		||||
        method = 'get'
 | 
			
		||||
    if request.headers.get('Host', '').find('https://'):
 | 
			
		||||
    if request.is_secure:
 | 
			
		||||
        scheme = 'https'
 | 
			
		||||
    ret = opensearch_xml.format(method=method, host=url_for('index', _external=True, _scheme=scheme))
 | 
			
		||||
    resp = Response(response=ret,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user