We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d833d35 commit 6630405Copy full SHA for 6630405
src/WalletFramework.Oid4Vc/Oid4Vp/Dcql/Models/CredentialMetaQuery.cs
@@ -56,7 +56,7 @@ public static Validation<CredentialMetaQuery> FromJObject(JObject json)
56
})
57
.ToOption();
58
59
- if (!(vcts.IsSome ^ doctype.IsSome))
+ if (vcts.IsSome == doctype.IsSome)
60
{
61
return new ObjectRequirementsAreNotMetError<CredentialMetaQuery>(
62
"In the CredentialMetaQuery the 'vct_values' and 'doctype_value' must be mutually exclusive.");
0 commit comments