aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorDiva Canto2010-01-10 14:12:03 -0800
committerDiva Canto2010-01-10 14:12:03 -0800
commit6998668bbcf6479f0ea0728024f24666c8cb0f8a (patch)
treef70528cbc1a073015abe62c4171a84ad56310a9f /OpenSim
parent* OMG! All but one references to UserProfileCacheService have been rerouted! (diff)
downloadopensim-SC_OLD-6998668bbcf6479f0ea0728024f24666c8cb0f8a.zip
opensim-SC_OLD-6998668bbcf6479f0ea0728024f24666c8cb0f8a.tar.gz
opensim-SC_OLD-6998668bbcf6479f0ea0728024f24666c8cb0f8a.tar.bz2
opensim-SC_OLD-6998668bbcf6479f0ea0728024f24666c8cb0f8a.tar.xz
* Last reference to CommsManager.UserProfileCacheService removed
* Grided-sims added the Library module
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs
index 139e0ca..fbb7660 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs
@@ -419,7 +419,7 @@ namespace OpenSim.Region.Framework.Scenes
419 419
420 public void HandleUUIDNameRequest(UUID uuid, IClientAPI remote_client) 420 public void HandleUUIDNameRequest(UUID uuid, IClientAPI remote_client)
421 { 421 {
422 if (uuid == CommsManager.UserProfileCacheService.LibraryRoot.Owner) 422 if (LibraryService != null && (LibraryService.LibraryRootFolder.Owner == uuid))
423 { 423 {
424 remote_client.SendNameReply(uuid, "Mr", "OpenSim"); 424 remote_client.SendNameReply(uuid, "Mr", "OpenSim");
425 } 425 }