Skip to content

Commit

Permalink
Fixing DID Metadata structure
Browse files Browse the repository at this point in the history
- Adderssing issue w3c#112:
  eliminating remaing function call to `didMetadataStructureTest_r`
  • Loading branch information
shigeya committed May 20, 2021
1 parent 271a4f9 commit cf4730b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const didMetadataStructureTest_Map_Recursive = (didDocumentMetadata) => {
'MUST be one of these data types as well.', () => {
Object.keys(didDocumentMetadata).forEach((property_name) => {
if (typeof didDocumentMetadata[property_name] == "object") {
didMetadataStructureTest_r(didDocumentMetadata[property_name]);
didMetadataStructureTest_Map_Recursive(didDocumentMetadata[property_name]);
}
});
});
Expand Down

0 comments on commit cf4730b

Please sign in to comment.