diff options
author | Justin Clark-Casey (justincc) | 2012-02-16 01:39:12 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-16 01:39:12 +0000 |
commit | 80ec2ac167713a4561938697a259e2a9681dadd4 (patch) | |
tree | 540e579a30640cc406b5e706b00444130883d4f1 /OpenSim/Services/Connectors | |
parent | Add known identity informatio nto log message if an exception is thrown durin... (diff) | |
download | opensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.zip opensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.tar.gz opensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.tar.bz2 opensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.tar.xz |
Correct a bug introduced in 1f402fdf (Feb 7 2012) where the delete friends grid call would try and contact the wrong uri. Also fixes the build from df960d5
Diffstat (limited to 'OpenSim/Services/Connectors')
-rw-r--r-- | OpenSim/Services/Connectors/Friends/FriendsServiceConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Friends/FriendsServiceConnector.cs b/OpenSim/Services/Connectors/Friends/FriendsServiceConnector.cs index 44138c9..b1dd84e 100644 --- a/OpenSim/Services/Connectors/Friends/FriendsServiceConnector.cs +++ b/OpenSim/Services/Connectors/Friends/FriendsServiceConnector.cs | |||
@@ -220,7 +220,7 @@ namespace OpenSim.Services.Connectors.Friends | |||
220 | public bool Delete(Dictionary<string, object> sendData, string PrincipalID, string Friend) | 220 | public bool Delete(Dictionary<string, object> sendData, string PrincipalID, string Friend) |
221 | { | 221 | { |
222 | string reply = string.Empty; | 222 | string reply = string.Empty; |
223 | string uri = m_ServerURI = "/friends"; | 223 | string uri = m_ServerURI + "/friends"; |
224 | try | 224 | try |
225 | { | 225 | { |
226 | reply = SynchronousRestFormsRequester.MakeRequest("POST", uri, ServerUtils.BuildQueryString(sendData)); | 226 | reply = SynchronousRestFormsRequester.MakeRequest("POST", uri, ServerUtils.BuildQueryString(sendData)); |