Fixe a typo in the variable name

This commit is contained in:
GogoVega
2025-10-16 17:06:05 +02:00
parent b939305070
commit ced0b30632

View File

@@ -120,8 +120,8 @@ RED.comms = (function() {
subscribers[i](msg.topic,msg.data);
} catch (error) {
// need to decide what to do with this uncaught error
console.warn('Uncaught error from RED.comms.subscribe: ' + err.toString())
console.warn(err)
console.warn('Uncaught error from RED.comms.subscribe: ' + error.toString())
console.warn(error)
}
}
}