Skip to content

Commit

Permalink
Change sorting field type parsing to Long instead of Int
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Benjamin authored and bbimber committed Jun 21, 2024
1 parent 82ecaa8 commit 53d362d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jbrowse/src/org/labkey/jbrowse/JBrowseLuceneSearch.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public JSONObject doSearch(User u, String searchString, final int pageSize, fina
pointsConfigMap.put(field, doublePointsConfig);
}
case Integer -> {
numericQueryParserFields.put(field, SortField.Type.INT);
numericQueryParserFields.put(field, SortField.Type.LONG);
pointsConfigMap.put(field, intPointsConfig);
}
}
Expand Down

0 comments on commit 53d362d

Please sign in to comment.