Skip to content

Commit

Permalink
fix std processor
Browse files Browse the repository at this point in the history
  • Loading branch information
StardustDL committed Feb 21, 2024
1 parent cb03a83 commit d7bf124
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index/std.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def version(self, release):
if totalResult is None:
totalResult = result.data
else:
for entry in result.data.entries.values():
if entry.id not in totalResult.entries:
for entry in result.data:
if entry.id not in totalResult:
totalResult.addEntry(entry)
if totalResult is None:
finalResult = AexPyResult(code=1, log="Failed to dump", out="")
Expand Down

0 comments on commit d7bf124

Please sign in to comment.