fix multiple include

This commit is contained in:
Alex Kwan
2016-02-15 20:14:50 +08:00
parent cf7202f80a
commit a7093d33bb
2 changed files with 4 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

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;
};