Skip to content

Commit

Permalink
fix: merge instead of replace contact data on re-OOBI (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentbull authored Mar 3, 2025
1 parent b8ee48a commit f537fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keri/app/oobiing.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def processClients(self):
obr.cid = response["headers"][ending.OOBI_AID_HEADER]

if obr.oobialias is not None and obr.cid:
self.org.replace(pre=obr.cid, data=dict(alias=obr.oobialias, oobi=url))
self.org.update(pre=obr.cid, data=dict(alias=obr.oobialias, oobi=url))

self.hby.db.coobi.rem(keys=(url,))
obr.state = Result.resolved
Expand Down

0 comments on commit f537fae

Please sign in to comment.