We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff3edd8 commit 91ba45bCopy full SHA for 91ba45b
1 file changed
aries_cloudagent/protocols/didexchange/v1_0/manager.py
@@ -483,6 +483,9 @@ async def receive_request(
483
)
484
else:
485
# request is against implicit invitation on public DID
486
+ if not self.profile.settings.get("requests_through_public_did"):
487
+ raise DIDXManagerError("Unsolicited connection requests to "
488
+ "public DID is not enabled")
489
async with self.profile.session() as session:
490
wallet = session.inject(BaseWallet)
491
my_info = await wallet.create_local_did(
0 commit comments