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:
commit
5e3710d746
|
@ -1383,7 +1383,7 @@
|
||||||
* Returns list of webdav properties to request
|
* Returns list of webdav properties to request
|
||||||
*/
|
*/
|
||||||
_getWebdavProperties: function() {
|
_getWebdavProperties: function() {
|
||||||
return this.filesClient.getPropfindProperties();
|
return [].concat(this.filesClient.getPropfindProperties());
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue