diff options
author | Wolfy-J <[email protected]> | 2018-06-12 18:18:11 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-12 18:18:11 +0300 |
commit | 592bda7d2b2c58ce466979e567158202f07bda7e (patch) | |
tree | 56c47e4822dec35b31e753c4d6bcce20813aca4d /service/http/parse.go | |
parent | c7f5df2d4cf07b4f86f31412cf10878df8de2a77 (diff) |
faster indexes
Diffstat (limited to 'service/http/parse.go')
-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, "") } |