Skip to content

Commit

Permalink
Hotfix: fix extracting data from the vocab mint names (#2216)
Browse files Browse the repository at this point in the history
  • Loading branch information
cofiem authored Jun 7, 2024
1 parent 5c1f5be commit cfdfe89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript/api/controllers/VocabController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export module Controllers {
const flattened_prefix = "flattened_";
try {
let mintResponse = await VocabService.findInMint(mintSourceType, searchString);
let response_docs = mintResponse.docs;
let response_docs = mintResponse.response.docs;
if (unflatten == "true") {
_.forEach(response_docs, (doc: any) => {
_.forOwn(doc, (val: any, key: any) => {
Expand Down

0 comments on commit cfdfe89

Please sign in to comment.