gui - set wlan config, set a default one is not accounted for

This commit is contained in:
Blake J. Harnden 2018-09-19 10:39:01 -07:00
parent 6d885935b7
commit 6e91aff04b

View file

@ -149,6 +149,12 @@ public class CoreRestClient implements ICoreClient {
}
for (CoreNode node : networkGraph.getGraph().getVertices()) {
// must pre-configure wlan nodes, if not already
if (node.getNodeType().getValue() == NodeType.WLAN) {
WlanConfig config = getWlanConfig(node);
setWlanConfig(node, config);
}
if (!createNode(node)) {
return false;
}