pb 2 роки тому
джерело
коміт
18861c2529
1 змінених файлів з 4 додано та 1 видалено
  1. 4
    1
      index.js

+ 4
- 1
index.js Переглянути файл

@@ -4141,7 +4141,10 @@ var getInteractionPoints = function(detectedinstanceoptions, possiblePrompts, pr
instances.push(instance)
instanceTypes.push(instance.node_env)
instanceNames.push(instance.instanceName)
Array.prototype.push.apply(remotes, Object.keys(instance.reposerverinstances[instance.reposerver].remotes))
var otherremotes = instance?.reposerverinstances
if(otherremotes) otherremotes = otherremotes[instance?.reposerver]?.remotes
otherremotes = otherremotes || {}
Array.prototype.push.apply(remotes, Object.keys(otherremotes))
})
})
instances = instances.concat(detectedinstanceoptions)

Завантаження…
Відмінити
Зберегти