Browse Source

noticed wrong var

0xdcarns 3 years ago
parent
commit
6b075983e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      servercfg/serverconf.go

+ 1 - 1
servercfg/serverconf.go

@@ -97,7 +97,7 @@ func GetServerConfig() config.ServerConfig {
 	cfg.CommsCIDR = GetCommsCIDR()
 	cfg.CommsCIDR = GetCommsCIDR()
 	services := strings.Join(GetPortForwardServiceList(), ",")
 	services := strings.Join(GetPortForwardServiceList(), ",")
 	cfg.PortForwardServices = services
 	cfg.PortForwardServices = services
-	cfg.CommsID = GetCommsCIDR()
+	cfg.CommsID = GetCommsID()
 
 
 	return cfg
 	return cfg
 }
 }