gd-sprest 7.7.2 → 7.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lib/search.js +1 -1
- package/build/rest.js +1 -1
- package/dist/gd-sprest.js +1 -1
- package/dist/gd-sprest.min.js +1 -1
- package/package.json +1 -1
package/build/lib/search.js
CHANGED
|
@@ -84,7 +84,7 @@ exports.Search.postQuery = function (props) {
|
|
|
84
84
|
// Compute the total # of requests that we need to make
|
|
85
85
|
var totalPages = Math.ceil(results.TotalRows / rowCount);
|
|
86
86
|
// Loop for the total # of requests
|
|
87
|
-
for (var i =
|
|
87
|
+
for (var i = 1; i < totalPages; i++) {
|
|
88
88
|
// Set the start row
|
|
89
89
|
queryProps.StartRow = i * rowCount;
|
|
90
90
|
// See if we are making a batch request
|
package/build/rest.js
CHANGED