summaryrefslogtreecommitdiff
path: root/crawler/utility.go
diff options
context:
space:
mode:
Diffstat (limited to 'crawler/utility.go')
-rw-r--r--crawler/utility.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawler/utility.go b/crawler/utility.go
index 57f0e7b..b7ae958 100644
--- a/crawler/utility.go
+++ b/crawler/utility.go
@@ -73,7 +73,7 @@ func detect_spirit_type(name string) string {
if matched {
return "Champagner"
}
- matched, err = regexp.MatchString(`(^|\s)(sekt|cremant|prosecco)(\s|$)`, name)
+ matched, err = regexp.MatchString(`(^|\s)(sekt|cremant|prosecco|cava)(\s|$)`, name)
if err != nil {
Fatal(err, "Sekt|Cremant regex failed")
}