]> source.dussan.org Git - nextcloud-server.git/commitdiff
Revert "[stable15] Show original path in trashbin" 14028/head
authorRoeland Jago Douma <rullzer@users.noreply.github.com>
Tue, 5 Feb 2019 14:10:32 +0000 (15:10 +0100)
committerGitHub <noreply@github.com>
Tue, 5 Feb 2019 14:10:32 +0000 (15:10 +0100)
apps/files_trashbin/js/filelist.js

index 07e041faefd05c4f7140c9cda78c640ee6be34fa..3159506fae9625c6a92a3a20a7553355b65728a0 100644 (file)
@@ -11,7 +11,6 @@
        var DELETED_REGEXP = new RegExp(/^(.+)\.d[0-9]+$/);
        var FILENAME_PROP = '{http://nextcloud.org/ns}trashbin-filename';
        var DELETION_TIME_PROP = '{http://nextcloud.org/ns}trashbin-deletion-time';
-       var TRASHBIN_ORIGINAL_LOCATION = '{http://nextcloud.org/ns}trashbin-original-location';
 
        /**
         * Convert a file name in the format filename.d12345 to the real file name.
                initialize: function() {
                        this.client.addFileInfoParser(function(response, data) {
                                var props = response.propStat[0].properties;
-                               var path = props[TRASHBIN_ORIGINAL_LOCATION];
                                return {
                                        displayName: props[FILENAME_PROP],
                                        mtime: parseInt(props[DELETION_TIME_PROP], 10) * 1000,
                                        hasPreview: true,
-                                       path: path,
-                                       extraData: path
+                                       path: data.path.substr(6), // remove leading /trash
                                }
                        });
 
                 * Returns list of webdav properties to request
                 */
                _getWebdavProperties: function() {
-                       return [FILENAME_PROP, DELETION_TIME_PROP, TRASHBIN_ORIGINAL_LOCATION].concat(this.filesClient.getPropfindProperties());
+                       return [FILENAME_PROP, DELETION_TIME_PROP].concat(this.filesClient.getPropfindProperties());
                },
 
                /**