Skip to content

Commit

Permalink
worker: Fix created_at conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
barthalion committed Oct 17, 2024
1 parent c63154f commit 1eb19fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def update():
)

if created_at:
apps_created_at[app_id] = float(created_at)
apps_created_at[app_id] = created_at.timestamp()
else:
if metadata := db.get_json_key(f"summary:{app_id}:stable"):
created_at = metadata.get("timestamp")
Expand Down

0 comments on commit 1eb19fb

Please sign in to comment.