We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c6a737 + f8bc326 commit 1b09a96Copy full SHA for 1b09a96
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "kuzzle-sdk",
3
- "version": "3.1.1",
+ "version": "3.1.2",
4
"description": "Official Javascript SDK for Kuzzle",
5
"author": "The Kuzzle Team <support@kuzzle.io>",
6
"repository": {
src/SearchResult.js
@@ -95,7 +95,7 @@ KuzzleSearchResult.prototype.next = function (cb) {
95
}
96
97
// from and size parameters are not valid for a scroll action
98
- if (options.from) {
+ if (typeof options.from !== 'undefined') {
99
delete options.from;
100
101
0 commit comments