* Finished implementation of FriendsService.Delete

* Deny now working
slimupdates
Diva Canto 2010-02-27 10:57:57 -08:00
parent 3906a14857
commit a234672db8
2 changed files with 5 additions and 2 deletions

View File

@ -391,7 +391,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
private void ForwardFriendshipOffer(UUID agentID, UUID friendID, GridInstantMessage im)
{
// !!!!!!!!
// !!!!!!!! This is a hack so that we don't have to keep state (transactionID/imSessionID)
// We stick this agent's ID as imSession, so that it's directly available on the receiving end
im.imSessionID = im.fromAgentID;
IClientAPI friendClient = LocateClientObject(friendID);
@ -450,6 +451,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
private void OnDenyFriendRequest(IClientAPI client, UUID agentID, UUID friendID, List<UUID> callingCardFolders)
{
m_log.DebugFormat("[FRIENDS]: {0} denied friendship to {1}", agentID, friendID);
FriendsService.Delete(agentID, friendID.ToString());
FriendsService.Delete(friendID, agentID.ToString());

View File

@ -78,7 +78,7 @@ namespace OpenSim.Services.Friends
public bool Delete(UUID PrincipalID, string Friend)
{
return false;
return m_Database.Delete(PrincipalID, Friend);
}
}