summaryrefslogtreecommitdiffabout
path: root/src/components/xriProtocolHandler.js
Side-by-side diff
Diffstat (limited to 'src/components/xriProtocolHandler.js') (more/less context) (ignore whitespace changes)
-rwxr-xr-xsrc/components/xriProtocolHandler.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/components/xriProtocolHandler.js b/src/components/xriProtocolHandler.js
index 7046cde..1105874 100755
--- a/src/components/xriProtocolHandler.js
+++ b/src/components/xriProtocolHandler.js
@@ -316,5 +316,5 @@ function isKnownServiceType(type)
function getServiceClass(type)
{
- if (isKnownServiceType(type)) {
+ if (type && isKnownServiceType(type)) {
return SERVICE_CLASSES[type.toLowerCase()];
}
@@ -798,5 +798,5 @@ XRIChannel.prototype = {
-/* public fields (nsIChannel implmentation) */
+/* public fields (nsIChannel implementation) */
allowPipelining: false,
redirectionLimit: 5,
@@ -816,4 +816,5 @@ XRIChannel.prototype = {
}
catch (e) {
+ dump("getRequestHeader - got exception: " + e + "\n");
throw e;
}
@@ -829,10 +830,7 @@ XRIChannel.prototype = {
}
catch (e) {
+ dump("getResponseHeader - got exception: " + e + "\n");
throw e;
}
-/* XXX
- if (header == "Content-Type")
- return "text/html";
-*/
return null;
},