aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
index 31c317c..5e8cd8e 100644
--- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
@@ -492,13 +492,12 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
492 } 492 }
493 } 493 }
494 494
495
496 protected void RemoveUrl(UrlData data) 495 protected void RemoveUrl(UrlData data)
497 { 496 {
498 if (data.isSsl) 497 if (data.isSsl)
499 m_HttpsServer.RemoveHTTPHandler("", "/lslhttps/"+data.urlcode.ToString()+"/"); 498 m_HttpsServer.RemovePollServiceHTTPHandler("", "/lslhttps/"+data.urlcode.ToString()+"/");
500 else 499 else
501 m_HttpServer.RemoveHTTPHandler("", "/lslhttp/"+data.urlcode.ToString()+"/"); 500 m_HttpServer.RemovePollServiceHTTPHandler("", "/lslhttp/"+data.urlcode.ToString()+"/");
502 } 501 }
503 502
504 protected Hashtable NoEvents(UUID requestID, UUID sessionID) 503 protected Hashtable NoEvents(UUID requestID, UUID sessionID)