From c176caeb05c2264654b764e4d010561da60c24fc Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 10 Apr 2008 13:53:06 +0000 Subject: moved fields to properties for UserDataProfile, which was actually a little more work than I expected given the copious use of out params. --- .../Environment/Modules/AvatarProfilesModule.cs | 22 +++++++++++----------- OpenSim/Region/Environment/Modules/VoiceModule.cs | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'OpenSim/Region/Environment') diff --git a/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs b/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs index 0ead5f7..699e68d 100644 --- a/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs +++ b/OpenSim/Region/Environment/Modules/AvatarProfilesModule.cs @@ -90,10 +90,10 @@ namespace OpenSim.Region.Environment.Modules UserProfileData profile = m_scene.CommsManager.UserService.GetUserProfile(avatarID); if (null != profile) { - remoteClient.SendAvatarProperties(profile.UUID, profile.profileAboutText, - Util.ToDateTime(profile.created).ToString(), - System.String.Empty, profile.profileFirstText, profile.profileCanDoMask, - profile.profileFirstImage, profile.profileImage, System.String.Empty, partner); + remoteClient.SendAvatarProperties(profile.Id, profile.ProfileAboutText, + Util.ToDateTime(profile.Created).ToString(), + System.String.Empty, profile.ProfileFirstText, profile.ProfileCanDoMask, + profile.ProfileFirstImage, profile.ProfileImage, System.String.Empty, partner); } else { @@ -103,15 +103,15 @@ namespace OpenSim.Region.Environment.Modules public void UpdateAvatarProperties(IClientAPI remoteClient, UserProfileData newProfile) { - UserProfileData Profile = m_scene.CommsManager.UserService.GetUserProfile(newProfile.UUID); + UserProfileData Profile = m_scene.CommsManager.UserService.GetUserProfile(newProfile.Id); // if it's the profile of the user requesting the update, then we change only a few things. - if (remoteClient.AgentId.CompareTo(Profile.UUID) == 0) + if (remoteClient.AgentId.CompareTo(Profile.Id) == 0) { - Profile.profileImage = newProfile.profileImage; - Profile.profileFirstImage = newProfile.profileFirstImage; - Profile.profileAboutText = newProfile.profileAboutText; - Profile.profileFirstText = newProfile.profileFirstText; + Profile.ProfileImage = newProfile.ProfileImage; + Profile.ProfileFirstImage = newProfile.ProfileFirstImage; + Profile.ProfileAboutText = newProfile.ProfileAboutText; + Profile.ProfileFirstText = newProfile.ProfileFirstText; } else { @@ -119,7 +119,7 @@ namespace OpenSim.Region.Environment.Modules } if (m_scene.CommsManager.UserService.UpdateUserProfileProperties(Profile)) { - RequestAvatarProperty(remoteClient, newProfile.UUID); + RequestAvatarProperty(remoteClient, newProfile.Id); } } } diff --git a/OpenSim/Region/Environment/Modules/VoiceModule.cs b/OpenSim/Region/Environment/Modules/VoiceModule.cs index b254507..8ca4698 100644 --- a/OpenSim/Region/Environment/Modules/VoiceModule.cs +++ b/OpenSim/Region/Environment/Modules/VoiceModule.cs @@ -180,7 +180,7 @@ namespace OpenSim.Region.Environment.Modules if (null == userInfo) throw new Exception("cannot get user details"); LLSDVoiceAccountResponse voiceAccountResponse = - new LLSDVoiceAccountResponse(voiceUser, "$1$" + userInfo.UserProfile.passwordHash); + new LLSDVoiceAccountResponse(voiceUser, "$1$" + userInfo.UserProfile.PasswordHash); string r = LLSDHelpers.SerialiseLLSDReply(voiceAccountResponse); m_log.DebugFormat("[CAPS][PROVISIONVOICE]: {0}", r); return r; -- cgit v1.1