Skip to content

Commit

Permalink
fix header foe validating account id
Browse files Browse the repository at this point in the history
  • Loading branch information
lovesh-ap committed Dec 19, 2024
1 parent 5ca683e commit 7253b66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static boolean hasValidAccountId(RestrictionCriteria restrictionCriteria,
}
}
if(restrictionCriteria.getMappingParameters().getQuery().isEnabled()) {
Set<String> queryValues = getQueryString(restrictionCriteria.getMappingParameters().getHeader().getLocations(), request.getQueryParameters());
Set<String> queryValues = getQueryString(restrictionCriteria.getMappingParameters().getQuery().getLocations(), request.getQueryParameters());
if(matcher(accountIds, queryValues)){
return true;
}
Expand Down

0 comments on commit 7253b66

Please sign in to comment.