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()
This commit is contained in:
Sean Dague
2008-12-17 21:59:20 +00:00
parent bb31389b7d
commit ba6b3ade3b

View File

@@ -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>";