Allow other whitespace characters than spaces in Robust connection string
parent
13c4fd7271
commit
90a39379f0
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue