Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
Fix agents
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Feb 5, 2024
1 parent 51b3b58 commit 8e9e413
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/sources/rosetta/lib/response_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,8 @@ def agents(self) -> dict:
),
None,
):
id = objects.get(self.source, "@admin.id")
name = objects.get(self.source, "name.value")
id = objects.get(agent, "@admin.id")
name = objects.get(agent, "name.value")
if id and name:
places = (
[
Expand Down

0 comments on commit 8e9e413

Please sign in to comment.