diff --git a/cmd/fdroidcl/main.go b/cmd/fdroidcl/main.go index 9c041d4..66d0fc1 100644 --- a/cmd/fdroidcl/main.go +++ b/cmd/fdroidcl/main.go @@ -16,14 +16,14 @@ import ( ) func appMatches(fields []string, terms []string) bool { + fieldLoop: for _, field := range fields { for _, term := range terms { if !strings.Contains(field, term) { - goto next + continue fieldLoop } } return true - next: } return false }