diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-02-23 15:22:34 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-02-23 15:22:34 -0500 |
commit | 09a2730f571c08945bfb90342c6cab9f7941e856 (patch) | |
tree | 7f382b8edf9d295f9efad0d72e162df94ebef40f /apps/files_sharing/lib/share/file.php | |
parent | 3dfb1628ce6e394a80c03a96da7c837209767e5b (diff) | |
download | nextcloud-server-09a2730f571c08945bfb90342c6cab9f7941e856.tar.gz nextcloud-server-09a2730f571c08945bfb90342c6cab9f7941e856.zip |
Include etag field for folder contents
Diffstat (limited to 'apps/files_sharing/lib/share/file.php')
-rw-r--r-- | apps/files_sharing/lib/share/file.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 6d3c55a008f..ceabc7d548b 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -87,6 +87,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $file['size'] = $item['size']; $file['mtime'] = $item['mtime']; $file['encrypted'] = $item['encrypted']; + $file['etag'] = $item['etag']; $files[] = $file; } return $files; |