From 3eaf6626f838d180ed4608e6fc581b38d80a0107 Mon Sep 17 00:00:00 2001
From: Robin Appelman <robin@icewind.nl>
Date: Mon, 18 Sep 2017 14:08:30 +0200
Subject: [PATCH] merge vendor js

Signed-off-by: Robin Appelman <robin@icewind.nl>
---
 core/vendor/core.js | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/core/vendor/core.js b/core/vendor/core.js
index 8cdb203aacd..bda270892ad 100644
--- a/core/vendor/core.js
+++ b/core/vendor/core.js
@@ -5551,6 +5551,9 @@ dav.Client.prototype = {
             '  <d:prop>\n';
 
         for(var ii in properties) {
+            if (!properties.hasOwnProperty(ii)) {
+                continue;
+            }
 
             var property = this.parseClarkNotation(properties[ii]);
             if (this.xmlNamespaces[property.namespace]) {
@@ -5596,6 +5599,10 @@ dav.Client.prototype = {
             '   <d:prop>\n';
 
         for(var ii in properties) {
+            if (!properties.hasOwnProperty(ii)) {
+                continue;
+            }
+
             var property = this.parseClarkNotation(ii);
             var propName;
             var propValue = properties[ii];
-- 
GitLab