Skip to content

Commit 53d362d

Browse files
Sebastian Benjaminbbimber
authored andcommitted
Change sorting field type parsing to Long instead of Int
1 parent 82ecaa8 commit 53d362d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbrowse/src/org/labkey/jbrowse/JBrowseLuceneSearch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public JSONObject doSearch(User u, String searchString, final int pageSize, fina
194194
pointsConfigMap.put(field, doublePointsConfig);
195195
}
196196
case Integer -> {
197-
numericQueryParserFields.put(field, SortField.Type.INT);
197+
numericQueryParserFields.put(field, SortField.Type.LONG);
198198
pointsConfigMap.put(field, intPointsConfig);
199199
}
200200
}

0 commit comments

Comments
 (0)