aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-07-06 09:02:58 -0700
committerJames Lal <james@lightsofapollo.com>2012-07-06 09:02:58 -0700
commitbe1e5c9f50bea5e820da048c0f4d4f5810a86281 (patch)
tree68fa8975aaf62b28549be42c99b65d0ebaf415b7 /lib
parentcb10a247cfc91511cfc0e31bfcbb1d6f7d178529 (diff)
downloadjsCalDAV-be1e5c9f50bea5e820da048c0f4d4f5810a86281.tar.gz
Add content type
Diffstat (limited to 'lib')
-rw-r--r--lib/caldav/request/abstract.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/caldav/request/abstract.js b/lib/caldav/request/abstract.js
index 04d2128..4b72fd5 100644
--- a/lib/caldav/request/abstract.js
+++ b/lib/caldav/request/abstract.js
@@ -43,6 +43,7 @@
}
this.xhr = new XHR(xhrOptions);
+ this.xhr.headers['Content-Type'] = 'text/xml';
}
Abstract.prototype = {