diff options
author | James Lal <james@lightsofapollo.com> | 2013-03-06 12:08:36 -0800 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2013-03-06 12:08:36 -0800 |
commit | fbd1d6d84ef1d793fd42bc32aa8bc46f1eb5534b (patch) | |
tree | b52d3bf0aabb1dcb563f5da0c5968f35a1e805cb /lib/caldav | |
parent | 3c19897e7eb888c8127b19f65462f3f6927a20ce (diff) | |
parent | e36e68c7373e48ba8e12d0b8f837a395bf71ebfb (diff) | |
download | jsCalDAV-fbd1d6d84ef1d793fd42bc32aa8bc46f1eb5534b.tar.gz |
Merge branch 'master' of github.com:mozilla-b2g/caldav
Diffstat (limited to 'lib/caldav')
-rw-r--r-- | lib/caldav/sax/dav_response.js | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/caldav/sax/dav_response.js b/lib/caldav/sax/dav_response.js index f168d97..69a4368 100644 --- a/lib/caldav/sax/dav_response.js +++ b/lib/caldav/sax/dav_response.js @@ -165,8 +165,7 @@ oncomplete: function() { var propstat = this.stack[this.stack.length - 1]; - var hash = propstat.propstat; - + propstat = propstat.propstat; var key; var status = this.current.status; var props = this.current.prop; @@ -174,21 +173,14 @@ delete this.current.status; delete this.current.prop; - var hasProps = false; - for (key in props) { - hasProps = true; if (Object.hasOwnProperty.call(props, key)) { - hash[key] = { + propstat[key] = { status: status, value: props[key] }; } } - - if (!hasProps) { - propstat.propstat = false; - } } }); |