Skip to content

Commit

Permalink
Fixing DID Metadata structure test
Browse files Browse the repository at this point in the history
- Adderssing issue #112:
  eliminating remaing function call to `didMetadataStructureTest_r`
  • Loading branch information
shigeya authored and msporny committed May 20, 2021
1 parent dd1dbd5 commit 1ddb28c
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 1ddb28c

Please sign in to comment.