Skip to content

Commit

Permalink
correct wrong update timestamp lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
psifertex committed Sep 30, 2024
1 parent a19b4c9 commit 98bc076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def getPluginJson(plugin, shortUrls):

# Additional fields required for internal use
if view_only:
lastUpdated = int(parser.parse(plugin["updated_at"]).timestamp())
lastUpdated = int(parser.parse(projectData["updated_at"]).timestamp())
else:
lastUpdated = int(parser.parse(releaseData["published_at"]).timestamp())
data["lastUpdated"] = lastUpdated
Expand Down

0 comments on commit 98bc076

Please sign in to comment.