Преглед на файлове

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)
 			}