Skip to content

Commit

Permalink
fix: internal server error on exchange query
Browse files Browse the repository at this point in the history
  • Loading branch information
lenkan committed Oct 23, 2023
1 parent 117a1ca commit b62429d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keria/peer/exchanging.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def on_post(req, rep, name):
exns = []
for said in saids:
serder, pathed = exchanging.cloneMessage(agent.hby, said.qb64)
exns.append(dict(exn=serder.ked, pathed=pathed))
exns.append(dict(exn=serder.ked, pathed={k: v.decode("utf-8") for k, v in pathed.items()}))

rep.status = falcon.HTTP_200
rep.content_type = "application/json"
Expand Down

0 comments on commit b62429d

Please sign in to comment.