From 8e07f1c61a9f7acfaff44ecf6a40c5a8aee115ec Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Mon, 6 Jul 2020 10:31:33 +0200 Subject: [PATCH] Backend: Add "eos" to stopwords list Signed-off-by: Michael Mayer --- pkg/txt/resources/stopwords.txt | 1 + pkg/txt/stopwords.go | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg/txt/resources/stopwords.txt b/pkg/txt/resources/stopwords.txt index 574189e90..3e3838b33 100644 --- a/pkg/txt/resources/stopwords.txt +++ b/pkg/txt/resources/stopwords.txt @@ -6,6 +6,7 @@ leica panasonic sony canon +eos nikon iphone handy diff --git a/pkg/txt/stopwords.go b/pkg/txt/stopwords.go index f9601d79f..f69a95223 100644 --- a/pkg/txt/stopwords.go +++ b/pkg/txt/stopwords.go @@ -11,6 +11,7 @@ var StopWords = map[string]bool{ "panasonic": true, "sony": true, "canon": true, + "eos": true, "nikon": true, "iphone": true, "handy": true,