Download Trove games with no 'uploaded_at' field. Fixes xtream1101#23

This commit is contained in:
Dr. Galambos Máté 2021-03-08 11:59:52 +01:00
parent d0d93d1949
commit 0fbe8f3136

View File

@ -114,8 +114,8 @@ class DownloadLibrary:
cache_file_key = 'trove:{name}'.format(name=web_name)
file_info = {
'uploaded_at': download.get('uploaded_at'),
'md5': download.get('md5'),
'uploaded_at': download.get('uploaded_at') or download.get('timestamp') or product.get('date_added', '0'),
'md5': download.get('md5', 'UNKNOWN_MD5'),
}
cache_file_info = self.cache_data.get(cache_file_key, {})