Skip to content

Commit

Permalink
fix(core): auth header on update (#592)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrriehl authored Dec 17, 2024
1 parent e4d37c2 commit faa0dc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/uagents/mailbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ async def update_agent_details(
data=agent_details.model_dump_json(),
headers={
"content-type": "application/json",
"Authorization": f"token {user_token}",
"Authorization": f"Bearer {user_token}",
},
) as resp:
resp.raise_for_status()
Expand Down

0 comments on commit faa0dc5

Please sign in to comment.