fix unescape

This commit is contained in:
Nick 2021-02-03 15:25:12 +01:00
parent bdacfab947
commit 3ed042db71

View File

@ -5,9 +5,7 @@ import (
"encoding/xml" "encoding/xml"
"io" "io"
"net/http" "net/http"
"net/url"
"os" "os"
pathpkg "path"
"strings" "strings"
"sync" "sync"
"time" "time"
@ -138,11 +136,9 @@ func (c *Client) ReadDir(path string) ([]os.FileInfo, error) {
if p := getProps(r, "200"); p != nil { if p := getProps(r, "200"); p != nil {
f := new(File) f := new(File)
if ps, err := url.QueryUnescape(r.Href); err == nil {
f.name = pathpkg.Base(ps) f.name = p.Name
} else {
f.name = p.Name
}
f.path = path + f.name f.path = path + f.name
f.modified = parseModified(&p.Modified) f.modified = parseModified(&p.Modified)
f.etag = p.ETag f.etag = p.ETag