]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_BaseHubNode.php
Swapped out seperator char for all boostrap nodes
[hub.git] / application / hub / main / nodes / class_BaseHubNode.php
index f3a244107719341c8d92ff1ecc039f68c1029aea..286fc00516b81f3362e7f918df250fd3ac16ee03 100644 (file)
@@ -206,7 +206,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $isFound = false;
 
                // Run through all configured IPs
-               foreach (explode(',', $this->getConfigInstance()->getConfigEntry('hub_bootstrap_nodes')) as $ipPort) {
+               foreach (explode(BaseHubSystem::BOOTSTRAP_NODES_SEPERATOR, $this->getConfigInstance()->getConfigEntry('hub_bootstrap_nodes')) as $ipPort) {
                        // Split it up in IP/port
                        $ipPortArray = explode(':', $ipPort);