Skip to content

Commit

Permalink
Issue #Fixing userName issue (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
AMIT KUMAR authored Dec 11, 2020
1 parent 5279e91 commit a54bd6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private UserSearchService() {}
public static List<User> getUserByKey(String key, String value) {
Map<String, Object> userRequest = new HashMap<>();
Map<String, Object> request = new HashMap<>();
request.put("key",key);
request.put("key",key.toLowerCase());
request.put("value", value);
request.put("fields", Arrays.asList("email","firstName","lastName","id","phone","userName","countryCode","status"));
userRequest.put("request", request);
Expand Down

0 comments on commit a54bd6a

Please sign in to comment.