Merge pull request #21325 from owncloud/files-donotduplicatewebdavproperties

Make a modifiable copy of the webdav properties in JS file list
This commit is contained in:
Thomas Müller 2015-12-22 12:16:26 +01:00
commit 5e3710d746
1 changed files with 1 additions and 1 deletions

View File

@ -1383,7 +1383,7 @@
* Returns list of webdav properties to request
*/
_getWebdavProperties: function() {
return this.filesClient.getPropfindProperties();
return [].concat(this.filesClient.getPropfindProperties());
},
/**