소스 검색

Fixed FTP showing backup vroot in ftp

TC pushbot 5 4 년 전
부모
커밋
8ac0ec88f4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      mod/storage/ftp/aofs.go

+ 1 - 1
mod/storage/ftp/aofs.go

@@ -225,7 +225,7 @@ func (a aofs) pathRewrite(path string) (string, *fs.FileSystemHandler, error) {
 		fsHandlers := a.userinfo.GetAllFileSystemHandler()
 		for _, fsh := range fsHandlers {
 			//Create a folder representation for this virtual directory
-			if fsh.UUID != "tmp" {
+			if !(fsh.UUID == "tmp" || fsh.Hierarchy == "backup") {
 				os.Mkdir(a.tmpFolder+fsh.UUID, 0755)
 			}