1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Function error not recognised as TypeError

This commit is contained in:
Nick O'Leary 2014-05-06 13:49:22 +01:00
parent 5e5d3d3000
commit 4b160dc3a9

View File

@ -57,7 +57,7 @@ module.exports = function(RED) {
this.send(results);
} catch(err) {
this.error(err);
this.error(err.toString());
}
}
});