aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs
diff options
context:
space:
mode:
authorMelanie2012-12-14 03:35:55 +0100
committerMelanie2012-12-14 03:35:55 +0100
commit7a093df24b470a6c80d67b1f8572f37a2a350521 (patch)
tree64914dc326e53844af9e73d467046e111fe1781f /OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs
parentCheck database for root prim IDs only to try and get a handle on prim loss (diff)
downloadopensim-SC_OLD-7a093df24b470a6c80d67b1f8572f37a2a350521.zip
opensim-SC_OLD-7a093df24b470a6c80d67b1f8572f37a2a350521.tar.gz
opensim-SC_OLD-7a093df24b470a6c80d67b1f8572f37a2a350521.tar.bz2
opensim-SC_OLD-7a093df24b470a6c80d67b1f8572f37a2a350521.tar.xz
Prevent a failed user relogi from throwing exceptions in poll services
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs
index dd87671..d4dbfb9 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs
@@ -333,7 +333,7 @@ namespace OpenSim.Region.ClientStack.Linden
333 protocol = "https"; 333 protocol = "https";
334 } 334 }
335 caps.RegisterHandler("GetTexture", String.Format("{0}://{1}:{2}{3}", protocol, hostName, port, capUrl)); 335 caps.RegisterHandler("GetTexture", String.Format("{0}://{1}:{2}{3}", protocol, hostName, port, capUrl));
336 m_pollservices.Add(agentID, args); 336 m_pollservices[agentID] = args;
337 m_capsDict[agentID] = capUrl; 337 m_capsDict[agentID] = capUrl;
338 } 338 }
339 339