fix #1048 remove geo property
This commit is contained in:
parent
f1086b314e
commit
4f931a3745
1 changed files with 0 additions and 6 deletions
|
@ -146,7 +146,6 @@ public class JsonApiManager extends BaseJsonApiManager {
|
|||
final String allPageCount = Integer.toString(data.getAllPageCount());
|
||||
final List<Map<String, Object>> documentItems = data.getDocumentItems();
|
||||
final FacetResponse facetResponse = data.getFacetResponse();
|
||||
final GeoInfo geoInfo = params.getGeoInfo();
|
||||
final String queryId = data.getQueryId();
|
||||
|
||||
buf.append("\"q\":");
|
||||
|
@ -251,11 +250,6 @@ public class JsonApiManager extends BaseJsonApiManager {
|
|||
}
|
||||
buf.append(']');
|
||||
}
|
||||
if (geoInfo != null && geoInfo.toQueryBuilder() != null) {
|
||||
buf.append(',');
|
||||
buf.append("\"geo\":");
|
||||
buf.append(toGeoRequestString(geoInfo));
|
||||
}
|
||||
}
|
||||
} catch (final Exception e) {
|
||||
status = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue