We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e3973 commit 415425aCopy full SHA for 415425a
quetz/repo_data.py
@@ -22,7 +22,7 @@ def export(dao, channel_name, subdir):
22
):
23
data = json.loads(info)
24
data['time_modified'] = int(time_modified.timestamp())
25
- if data['timestamp'] > MAX_CONDA_TIMESTAMP:
+ if 'timestamp' in data and data['timestamp'] > MAX_CONDA_TIMESTAMP:
26
# Convert timestamp from milliseconds to seconds
27
data['timestamp'] //= 1000
28
if format == db_models.PackageFormatEnum.conda:
0 commit comments