Skip to content

Commit

Permalink
wordlist fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushaga14 committed Jan 11, 2024
1 parent 2eb4e18 commit 79e64ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public static String resolveAuthContext(String expression, Map<String, List<Stri
}

public static Boolean isWordListVariable(Object key, Map<String, Object> varMap) {
if (key == null || !(key instanceof String)) {
if (key == null) {
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,8 @@ public void extractQueryParams(FilterActionRequest filterActionRequest, Map<Stri

Object val = null;
List<String> querySet = (List<String>) filterActionRequest.getQuerySet();
String key = querySet.get(0);
Object k = querySet.get(0);
String key = k.toString();

String queryParams = rawApi.getRequest().getQueryParams();
String url = filterActionRequest.getApiInfoKey().getUrl();
Expand Down

0 comments on commit 79e64ca

Please sign in to comment.