diff --git a/parsers/html.go b/parsers/html.go
index c2d5443..13d0399 100644
--- a/parsers/html.go
+++ b/parsers/html.go
@@ -46,7 +46,7 @@ func ParseHTMLQueries(htmlData []byte, queries []string, nextPage string) ([]int
if len(value2) == 1 {
subresult = append(subresult, value2[0])
- } else {
+ } else if len(value2) > 1 {
subresult = append(subresult, value2)
}