diff options
-rw-r--r-- | service/http/parse.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/parse.go b/service/http/parse.go index 95a3105d..3b084eb8 100644 --- a/service/http/parse.go +++ b/service/http/parse.go @@ -177,7 +177,7 @@ func fetchIndexes(s string) []string { } pos = 2 default: - if pos == 1 || pos == 2 { + if pos > 0 { keys = append(keys, "") } |