Merge pull request #1244 from cloudreve/webdav-root

fix: cannot redirect root folder (close #1242)
pull/1257/head
AaronLiu 2 years ago committed by GitHub
commit a3d0291f41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save