diff --git a/OpenSim/Framework/HGNetworkServersInfo.cs b/OpenSim/Framework/HGNetworkServersInfo.cs index 4e7ed95848..227200e1ac 100644 --- a/OpenSim/Framework/HGNetworkServersInfo.cs +++ b/OpenSim/Framework/HGNetworkServersInfo.cs @@ -83,8 +83,12 @@ namespace OpenSim.Framework public static string ServerURI(string uri) { // Get rid of eventual slashes at the end - if (uri.EndsWith("/")) - uri = uri.Substring(0, uri.Length - 1); + try + { + if (uri.EndsWith("/")) + uri = uri.Substring(0, uri.Length - 1); + } + catch { } IPAddress ipaddr1 = null; string port1 = "";