Skip to content

Commit

Permalink
⬆️ Update lock file (openwallet-foundation#3296)
Browse files Browse the repository at this point in the history
* ⬆️ Update lock file

Signed-off-by: ff137 <ff137@proton.me>

* ✅ ensure HTTPBadRequest reason is a string

Signed-off-by: ff137 <ff137@proton.me>

---------

Signed-off-by: ff137 <ff137@proton.me>
Co-authored-by: Stephen Curran <swcurran@gmail.com>
  • Loading branch information
ff137 and swcurran committed Oct 22, 2024
1 parent acb61b9 commit a475472
Show file tree
Hide file tree
Showing 2 changed files with 990 additions and 876 deletions.
2 changes: 1 addition & 1 deletion acapy_agent/protocols/issue_credential/v2_0/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ async def credential_exchange_send_bound_offer(request: web.BaseRequest):
outbound_handler,
)
except LinkedDataProofException as err:
raise web.HTTPBadRequest(reason=err) from err
raise web.HTTPBadRequest(reason=str(err)) from err

await outbound_handler(cred_offer_message, connection_id=connection_id)

Expand Down
Loading

0 comments on commit a475472

Please sign in to comment.