mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Remove 'retined' property from node.status calls
This commit is contained in:
@@ -137,7 +137,7 @@ Node.prototype.error = function(msg) {
|
||||
/**
|
||||
* status: { fill:"red|green", shape:"dot|ring", text:"blah" }
|
||||
*/
|
||||
Node.prototype.status = function(status,retain) {
|
||||
comms.publish("status/"+this.id,status,retain);
|
||||
Node.prototype.status = function(status) {
|
||||
comms.publish("status/"+this.id,status,true);
|
||||
}
|
||||
module.exports = Node;
|
||||
|
Reference in New Issue
Block a user