Skip to content

Commit 99cdaaa

Browse files
fixed bug with hasSelect
1 parent 6259823 commit 99cdaaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/woql.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ WOQLQuery.prototype.setPageSize = function(size){
794794
}
795795

796796
WOQLQuery.prototype.hasSelect = function(){
797-
return this.getPagingProperty("select");
797+
return (this.getPagingProperty("select") ? true : false);
798798
}
799799

800800
WOQLQuery.prototype.getSelectVariables = function(q){

0 commit comments

Comments
 (0)