Merge pull request #1244 from cloudreve/webdav-root

fix: cannot redirect root folder (close #1242)
This commit is contained in:
AaronLiu
2022-04-26 16:42:03 +08:00
committed by GitHub

View File

@@ -384,6 +384,9 @@ func (fs *FileSystem) CreateDirectory(ctx context.Context, fullPath string) (*mo
} }
if fullPath == "/" { if fullPath == "/" {
if fs.Root != nil {
return fs.Root, nil
}
return fs.User.Root() return fs.User.Root()
} }