* minor: reduce coupling by passing in only session id to CachedUserInfo

This commit is contained in:
Justin Clarke Casey
2008-07-31 15:53:07 +00:00
parent 1f7fde9436
commit 58af0fabeb
3 changed files with 18 additions and 3 deletions

View File

@@ -689,6 +689,13 @@ namespace OpenSim
m_log.ErrorFormat("[CONSOLE]: Failed to find user {0} {1}", firstName, lastName);
return;
}
CachedUserInfo userInfo = m_commsManager.UserProfileCacheService.GetUserDetails(userProfile.ID);
if (null == userInfo)
{
m_log.ErrorFormat("[CONSOLE]: Failed to find user info for {0} {1} {2}", firstName, lastName, userProfile.ID);
return;
}
}
/// <summary>