Merge pull request #426 from mchun/master

fix multiple include
This commit is contained in:
Drew
2016-02-17 09:17:14 -08:00

View File

@@ -377,7 +377,11 @@ RestQuery.prototype.handleInclude = function() {
this.include = this.include.slice(1);
return this.handleInclude();
});
} else if (this.include.length > 0) {
this.include = this.include.slice(1);
return this.handleInclude();
}
return pathResponse;
};