fix for static
This commit is contained in:
parent
2761dbb096
commit
3a2bc89fbd
@ -54,9 +54,13 @@ func (c *Client) Open(user, path string) (fs.File, error) {
|
||||
|
||||
parts := strings.Split(strings.TrimLeft(path, "/"), "/")
|
||||
log.Printf("parts: %d #%v", len(parts), parts)
|
||||
if len(parts) > 1 && !strings.Contains(parts[0], ".") {
|
||||
if len(parts) > 1 {
|
||||
repo = parts[0]
|
||||
filepath = strings.Join(parts[1:], "/")
|
||||
if strings.Contains(parts[len(parts)-1], ".") {
|
||||
repo = fmt.Sprintf("%s.%s", user, c.domain)
|
||||
filepath = path
|
||||
}
|
||||
} else {
|
||||
repo = fmt.Sprintf("%s.%s", user, c.domain)
|
||||
filepath = path
|
||||
|
Loading…
Reference in New Issue
Block a user