fix a bug with the Grid REST interface that was returning the classname
in the UUID field instead of the actual UUID because of an implicit use of ToString()0.6.1-post-fixes
parent
bb31389b7d
commit
ba6b3ade3b
|
@ -1039,7 +1039,7 @@ namespace OpenSim.Grid.GridServer
|
|||
respstring = "<Root>";
|
||||
respstring += "<authkey>" + TheSim.regionSendKey + "</authkey>";
|
||||
respstring += "<sim>";
|
||||
respstring += "<uuid>" + TheSim.ToString() + "</uuid>";
|
||||
respstring += "<uuid>" + TheSim.UUID.ToString() + "</uuid>";
|
||||
respstring += "<regionname>" + TheSim.regionName + "</regionname>";
|
||||
respstring += "<sim_ip>" + TheSim.serverIP + "</sim_ip>";
|
||||
respstring += "<sim_port>" + TheSim.serverPort.ToString() + "</sim_port>";
|
||||
|
|
Loading…
Reference in New Issue