Merge pull request #526 from anna2130/mongo-db-aggregate

Fixed check for array in MongoDB aggregate function
This commit is contained in:
Nick O'Leary 2015-01-05 11:14:18 +00:00
commit 65e4d83625
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ module.exports = function(RED) {
}
});
} else if (node.operation === "aggregate") {
msg.payload = (msg.payload instanceof Array) ? msg.payload : [];
msg.payload = (Array.isArray(msg.payload)) ? msg.payload : [];
coll.aggregate(msg.payload, function(err, result) {
if (err) {
node.error(err);