From 6c4eed5539ac0d8d6bab9166a8e320aeb12c3cd6 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Thu, 31 Jul 2014 00:28:51 +0100 Subject: [PATCH] Fix bug where calling PUTGROUP on the core groups service without specifying a ServiceLocation would set the group name to an empty string. This should set the ServiceLocation to an empty string instead. --- OpenSim/Addons/Groups/GroupsExtendedData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Addons/Groups/GroupsExtendedData.cs b/OpenSim/Addons/Groups/GroupsExtendedData.cs index 1632aee706..c783b9eeda 100644 --- a/OpenSim/Addons/Groups/GroupsExtendedData.cs +++ b/OpenSim/Addons/Groups/GroupsExtendedData.cs @@ -174,7 +174,7 @@ namespace OpenSim.Groups if (dict.ContainsKey("ServiceLocation") && dict["ServiceLocation"] != null) grec.ServiceLocation = dict["ServiceLocation"].ToString(); else - grec.GroupName = string.Empty; + grec.ServiceLocation = string.Empty; if (dict.ContainsKey("ShownInList") && dict["ShownInList"] != null) grec.ShowInList = bool.Parse(dict["ShownInList"].ToString());