viewmodel
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -219,3 +219,3 @@ 'use strict'; | ||
// test if we need to load more | ||
return entities.length < pageSize ? continuationToken !== null : false; | ||
return (entities.length < pageSize || pageSize == -1) ? continuationToken !== null : false; | ||
}, function (err) { | ||
@@ -222,0 +222,0 @@ |
{ | ||
"author": "adrai", | ||
"name": "viewmodel", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"private": false, | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -0,1 +1,4 @@ | ||
## v1.2.2 | ||
- azure-table: fix issue in getEvents [#7](https://github.com/adrai/node-viewmodel/pull/7) thanks to [rvin100](https://github.com/rvin100) | ||
## v1.2.1 | ||
@@ -2,0 +5,0 @@ - fix paging issue in azure-table [#6](https://github.com/adrai/node-viewmodel/pull/6) thanks to [rvin100](https://github.com/rvin100) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65938