From 32a9fcd8b36baf206f786f4f05cae38c865afad7 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Thu, 31 Jul 2014 00:28:51 +0100 Subject: 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(-) (limited to 'OpenSim') diff --git a/OpenSim/Addons/Groups/GroupsExtendedData.cs b/OpenSim/Addons/Groups/GroupsExtendedData.cs index 1632aee..c783b9e 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()); -- cgit v1.1