We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bdce76 commit 93cbd2aCopy full SHA for 93cbd2a
1 file changed
aries_cloudagent/protocols/out_of_band/v1_0/manager.py
@@ -258,6 +258,12 @@ async def create_invitation(
258
async with self.profile.session() as session:
259
await conn_rec.save(session, reason="Created new invitation")
260
await conn_rec.attach_invitation(session, invi_msg)
261
+
262
+ await conn_rec.attach_invitation(session, invi_msg)
263
264
+ if metadata:
265
+ for key, value in metadata.items():
266
+ await conn_rec.metadata_set(session, key, value)
267
else:
268
our_service = ServiceDecorator(
269
recipient_keys=[our_recipient_key],
0 commit comments