Fix flag for connected plugins
parent
f87dd59039
commit
8928d777bb
|
@ -43,7 +43,11 @@ module.exports = function(s,config,lang){
|
||||||
pluginArray.push(name)
|
pluginArray.push(name)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if(pluginArray.length > 0)s.isAtleatOneDetectorPluginConnected = true
|
if(pluginArray.length > 0){
|
||||||
|
s.isAtleatOneDetectorPluginConnected = true
|
||||||
|
}else{
|
||||||
|
s.isAtleatOneDetectorPluginConnected = false
|
||||||
|
}
|
||||||
s.detectorPluginArray = pluginArray
|
s.detectorPluginArray = pluginArray
|
||||||
}
|
}
|
||||||
s.sendToAllDetectors = function(data){
|
s.sendToAllDetectors = function(data){
|
||||||
|
|
Loading…
Reference in New Issue