diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-22 12:16:26 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-22 12:16:26 +0100 |
commit | 5e3710d74690c44c51c483729a210d1f8d109ce8 (patch) | |
tree | c79334f1b14e6386c2e902f08996b5631e4e6ecf | |
parent | d17c2fb8d923eb2a5aa01b849139459d93227dad (diff) | |
parent | ca14277fca2ea3d550606a5234c573d766180815 (diff) | |
download | nextcloud-server-5e3710d74690c44c51c483729a210d1f8d109ce8.tar.gz nextcloud-server-5e3710d74690c44c51c483729a210d1f8d109ce8.zip |
Merge pull request #21325 from owncloud/files-donotduplicatewebdavproperties
Make a modifiable copy of the webdav properties in JS file list
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 7e1329d1155..a3dff2850bd 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1383,7 +1383,7 @@ * Returns list of webdav properties to request */ _getWebdavProperties: function() { - return this.filesClient.getPropfindProperties(); + return [].concat(this.filesClient.getPropfindProperties()); }, /** |