We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b163c86 commit 81e5019Copy full SHA for 81e5019
src/serverHandler/archive.go
@@ -54,7 +54,7 @@ func (h *handler) visitFs(
54
if fInfo.IsDir() {
55
childAliases := map[string]string{}
56
for aliasUrlPath, aliasFsPath := range h.aliases {
57
- if path.Dir(aliasUrlPath) == rawRequestPath {
+ if aliasUrlPath != rawRequestPath && path.Dir(aliasUrlPath) == rawRequestPath {
58
childAliases[aliasUrlPath] = aliasFsPath
59
continue
60
}
0 commit comments