Backend: Add "edit" and "edited" to stopwords list

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer 2020-06-27 14:22:03 +02:00
parent 2b2cd8ed23
commit 6c7ed8fdff
2 changed files with 4 additions and 0 deletions

View file

@ -27,6 +27,8 @@ upload
uploads uploads
download download
downloads downloads
edit
edited
temp temp
var var
lib lib

View file

@ -32,6 +32,8 @@ var StopWords = map[string]bool{
"uploads": true, "uploads": true,
"download": true, "download": true,
"downloads": true, "downloads": true,
"edit": true,
"edited": true,
"temp": true, "temp": true,
"var": true, "var": true,
"lib": true, "lib": true,