From 592bda7d2b2c58ce466979e567158202f07bda7e Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Tue, 12 Jun 2018 18:18:11 +0300 Subject: faster indexes --- service/http/parse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'service/http') 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, "") } -- cgit v1.2.3