mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix !=0 comparison
This commit is contained in:
parent
1ed98a5963
commit
4fb86ab55a
@ -136,7 +136,7 @@ RED.nodes = (function() {
|
||||
|
||||
function addNode(n) {
|
||||
var ns;
|
||||
if (n.type.indexOf("subflow") != 0) {
|
||||
if (n.type.indexOf("subflow") !== 0) {
|
||||
if (n._def.set.module === "node-red") {
|
||||
ns = "node-red";
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user