Proper tilde path clean up.
This commit is contained in:
parent
8d2309f889
commit
599bbf4b52
1 changed files with 1 additions and 2 deletions
|
@ -202,8 +202,7 @@ func resolvePath(path string, config Config) (string, os.FileInfo, error) {
|
|||
username := bits[1][1:]
|
||||
new_prefix := filepath.Join(config.DocBase, config.HomeDocBase, username)
|
||||
path = strings.Replace(path, bits[1], new_prefix, 1)
|
||||
// TODO: Fix this properly
|
||||
path = strings.Replace(path, "//", "/", -1)
|
||||
path = filepath.Clean(path)
|
||||
} else {
|
||||
path = filepath.Join(config.DocBase, path)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue