Fixe a typo in the variable name

pull/5313/head
GogoVega 2025-10-16 17:06:05 +02:00
parent b939305070
commit ced0b30632
No known key found for this signature in database
GPG Key ID: E1E048B63AC5AC2B
1 changed files with 2 additions and 2 deletions

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)
}
}
}