mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-31 10:37:06 -04:00 
			
		
		
		
	Merge pull request #2718 from return42/fix-publishedDate
[fix] publishedDate: don't try to get date from empty string or None
This commit is contained in:
		
						commit
						ba90c5a2e0
					
				| @ -650,7 +650,7 @@ def search(): | ||||
|             result['pretty_url'] = prettify_url(result['url']) | ||||
| 
 | ||||
|         # TODO, check if timezone is calculated right | ||||
|         if 'publishedDate' in result: | ||||
|         if result.get('publishedDate'):  # do not try to get a date from an empty string or a None type | ||||
|             try:  # test if publishedDate >= 1900 (datetime module bug) | ||||
|                 result['pubdate'] = result['publishedDate'].strftime('%Y-%m-%d %H:%M:%S%z') | ||||
|             except ValueError: | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user