diff options
Diffstat (limited to 'apps/files_trashbin/src/services/trashbin.ts')
-rw-r--r-- | apps/files_trashbin/src/services/trashbin.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/src/services/trashbin.ts b/apps/files_trashbin/src/services/trashbin.ts index d9ac3c7c70c..9aef75ef6d5 100644 --- a/apps/files_trashbin/src/services/trashbin.ts +++ b/apps/files_trashbin/src/services/trashbin.ts @@ -46,7 +46,7 @@ const resultToNode = function(node: FileStat): File | Folder { const nodeData = { id: node.props?.fileid as number || 0, - source: generateRemoteUrl(encodePath('dav' + rootPath + node.filename)), + source: generateRemoteUrl('dav' + rootPath + node.filename), // do not show the mtime column // mtime: new Date(node.lastmod), mime: node.mime as string, |