From f537fae611ef3ed4ab54768200ae87fd5b1a335f Mon Sep 17 00:00:00 2001 From: Kent Bull Date: Mon, 3 Mar 2025 12:40:15 -0700 Subject: [PATCH] fix: merge instead of replace contact data on re-OOBI (#943) --- src/keri/app/oobiing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keri/app/oobiing.py b/src/keri/app/oobiing.py index 88f301cc..8b5e8419 100644 --- a/src/keri/app/oobiing.py +++ b/src/keri/app/oobiing.py @@ -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