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
Sean Dague 2008-12-17 21:59:20 +00:00
parent bb31389b7d
commit ba6b3ade3b
1 changed files with 1 additions and 1 deletions

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