We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cbfaf8 commit a6494c6Copy full SHA for a6494c6
EdgeAgentSDK/EdgeAgent/Sources/DIDCommAgent/DIDCommAgent+Credentials.swift
@@ -152,7 +152,8 @@ public extension DIDCommAgent {
152
options: [
153
.linkSecret(id: "", secret: linkSecretString),
154
.credentialDefinitionDownloader(downloader: downloader),
155
- .schemaDownloader(downloader: downloader)
+ .schemaDownloader(downloader: downloader),
156
+ message.thid.map { .thid($0) } ?? .thid(message.id)
157
]
158
)
159
@@ -222,7 +223,8 @@ public extension DIDCommAgent {
222
223
.subjectDID(did),
224
.linkSecret(id: did.string, secret: linkSecretString),
225
226
227
+ offer.thid.map { .thid($0) } ?? .thid(offer.id)
228
229
230
0 commit comments