Avoid a scary warning message about null replies from the user agent service.
parent
d60f525baa
commit
4087a453dc
|
@ -354,6 +354,8 @@ namespace OpenSim.Server.Handlers.Hypergrid
|
||||||
string url = m_HomeUsersService.LocateUser(userID);
|
string url = m_HomeUsersService.LocateUser(userID);
|
||||||
if (url != string.Empty)
|
if (url != string.Empty)
|
||||||
hash["URL"] = url;
|
hash["URL"] = url;
|
||||||
|
else
|
||||||
|
hash["result"] = "Unable to locate user";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -389,6 +391,8 @@ namespace OpenSim.Server.Handlers.Hypergrid
|
||||||
string uui = m_HomeUsersService.GetUUI(userID, targetUserID);
|
string uui = m_HomeUsersService.GetUUI(userID, targetUserID);
|
||||||
if (uui != string.Empty)
|
if (uui != string.Empty)
|
||||||
hash["UUI"] = uui;
|
hash["UUI"] = uui;
|
||||||
|
else
|
||||||
|
hash["result"] = "User unknown";
|
||||||
}
|
}
|
||||||
|
|
||||||
XmlRpcResponse response = new XmlRpcResponse();
|
XmlRpcResponse response = new XmlRpcResponse();
|
||||||
|
|
Loading…
Reference in New Issue