Issue #97 Room Settings

- Room Settings node renamed to Room State Events
- Room State Events node allows configuring inputs/outputs from config
- Fix bug with various nodes allowing execution even though matrix server isn't connected
- Replace deprecated matrixClient.setGlobalErrorOnUnknownDevices method
- Update docs for new Room State Events node
This commit is contained in:
2023-10-21 19:33:44 -06:00
parent 9d050a0d44
commit 611e23b845
21 changed files with 646 additions and 233 deletions
+1
View File
@@ -34,6 +34,7 @@ module.exports = function(RED) {
if(!node.server.isConnected()) {
node.error("Matrix server connection is currently closed", msg);
node.send([null, msg]);
return;
}
msg.topic = node.roomId || msg.topic;