mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ACE-2620 - ResultSet off by one errors.
- Missing "more..." link in LiveSearch when page boundary (e.g. 6 results in total, page size of 5, no More... link shown) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@85781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -374,7 +374,7 @@ public class SolrJSONResultSet implements ResultSet, JSONResult
|
||||
@Override
|
||||
public boolean hasMore()
|
||||
{
|
||||
return numberFound.longValue() > (start.longValue() + page.size() + 1);
|
||||
return numberFound.longValue() > (start.longValue() + page.size());
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user