Example #1
0
        public void DeleteMute(UUID muteID, UUID AgentID)
        {
            List <string> serverURIs =
                m_registry.RequestModuleInterface <IConfigurationService>().FindValueOf(AgentID.ToString(),
                                                                                        "FriendsServerURI");

            if (serverURIs.Count > 0) //Remote user... or should be
            {
                m_remoteService.DeleteMute(muteID, AgentID);
            }
            else
            {
                m_localService.DeleteMute(muteID, AgentID);
            }
        }
Example #2
0
 public void DeleteMute(UUID muteID, UUID AgentID)
 {
     m_localService.DeleteMute(muteID, AgentID);
     m_remoteService.DeleteMute(muteID, AgentID);
 }