1

Fixing result count

This commit is contained in:
Alex Yatskov 2015-03-25 19:57:42 +09:00
parent f075c21333
commit b7553be7b9

View File

@ -79,7 +79,7 @@ func executeQuery(rw http.ResponseWriter, req *http.Request) {
}
for index, value := range foundEntries {
if index > request.MaxResults {
if index >= request.MaxResults {
break
}