Skip to content

Commit

Permalink
Merge branch 'development' into SERVICES-2527-relayed-v-3-features
Browse files Browse the repository at this point in the history
  • Loading branch information
cfaur09 committed Oct 4, 2024
2 parents 9584d8b + ca238af commit 2223aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/indexer/elastic/elastic.indexer.helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export class ElasticIndexerHelper {
}

if (filter.excludeMetaESDT === true) {
elasticQuery = elasticQuery.withMustMultiShouldCondition([NftType.SemiFungibleESDT, NftType.NonFungibleESDT], type => QueryType.Match('type', type));
elasticQuery = elasticQuery.withMustMultiShouldCondition([...this.nonFungibleEsdtTypes, ...this.semiFungibleEsdtTypes], type => QueryType.Match('type', type));
}

return elasticQuery;
Expand Down

0 comments on commit 2223aaa

Please sign in to comment.