diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index cb162ab..b826a12 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -5044,8 +5044,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5044 | { | 5044 | { |
5045 | CachedUserInfo userInfo = ((Scene)m_scene).CommsManager.UserProfileCacheService.GetUserDetails(AgentId); | 5045 | CachedUserInfo userInfo = ((Scene)m_scene).CommsManager.UserProfileCacheService.GetUserDetails(AgentId); |
5046 | if (userInfo == null) | 5046 | if (userInfo == null) |
5047 | break; | 5047 | { |
5048 | m_log.ErrorFormat( | ||
5049 | "[CLIENT]: Could not resolve user {0} for caps inventory update", | ||
5050 | AgentId); | ||
5048 | 5051 | ||
5052 | break; | ||
5053 | } | ||
5054 | |||
5049 | if (userInfo.RootFolder == null) | 5055 | if (userInfo.RootFolder == null) |
5050 | break; | 5056 | break; |
5051 | 5057 | ||