Allow other whitespace characters than spaces in Robust connection string

connector_plugin
Melanie 2012-10-08 17:36:40 +01:00
parent 13c4fd7271
commit 90a39379f0
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ namespace OpenSim.Server
}
string connList = serverConfig.GetString("ServiceConnectors", String.Empty);
string[] conns = connList.Split(new char[] {',', ' '});
string[] conns = connList.Split(new char[] {',', ' ', '\n', '\r', '\t'});
// int i = 0;
foreach (string c in conns)
@ -130,4 +130,4 @@ namespace OpenSim.Server
return 0;
}
}
}
}