- Add image thumbnail generation support for file upload node (and improved logging) #102

- Fix Received images missing thumbnail kills Node Red #65
- Trim rooms provided in receive node's Room ID config value
This commit is contained in:
2024-06-13 20:21:20 -06:00
parent 5090e4fbb6
commit 351679ad77
5 changed files with 1085 additions and 359 deletions
+1 -1
View File
@@ -191,7 +191,7 @@ module.exports = function(RED) {
node.send([msg, null]);
})
.catch(function(e){
node.warn("Error sending message " + e);
node.error("Error sending message: " + e, {});
msg.error = e;
node.send([null, msg]);
});