From 825d1c105d0ff256d214a5bdc3c4c2d7304c2499 Mon Sep 17 00:00:00 2001 From: Dmitry Popov Date: Tue, 24 May 2016 15:09:05 +0300 Subject: [PATCH] My fix for #24272, #23613, File not found when single file in a folder (#24800) * Fixed group share searching for members of multiple group. Issue #11808. * Fixed group share searching, continued. Avoid searching for empty group list in getItemSharedWithUser(). Broke tests in previous commit, #12030. * Simler check for group count. * Fix for https://github.com/owncloud/core/issues/24783 , described there * Now it's #24272, 24783 was a duplicate. Previous change was also not very good. Now we don't create ZIP with a single file inside. --- apps/files/js/filelist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index d34368a74d..b79dd0f66f 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -629,7 +629,7 @@ _onClickDownloadSelected: function(event) { var files; var dir = this.getCurrentDirectory(); - if (this.isAllSelected()) { + if (this.isAllSelected() && this.getSelectedFiles().length > 1) { files = OC.basename(dir); dir = OC.dirname(dir) || '/'; }