浏览代码

Fixed file explorer download one folder bug

TC pushbot 5 4 年之前
父节点
当前提交
b2050415f4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/SystemAO/file_system/file_explorer.html

+ 1 - 1
web/SystemAO/file_system/file_explorer.html

@@ -2730,7 +2730,7 @@
                     var downloadURL = "/media?file=" + encodeURIComponent($(".fileObject.selected").attr("filepath")) + "&download=true";
                     var filename = $(".fileObject.selected").attr("filename");
                     generateDownloadFromURL(downloadURL,escape(filename));
-                }else if ($(".fileObject.selected").length > 1){
+                }else if ($(".fileObject.selected").length > 1 || ($(".fileObject.selected").length == 1 && $(".fileObject.selected").attr("type") == "folder")){
                     //Do zip and download for multiple files
                     $(".fileObject.selected").each(function(){
                         fileList.push($(this).attr("filepath"));