gui - set wlan config, set a default one is not accounted for
This commit is contained in:
parent
6d885935b7
commit
6e91aff04b
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue