From 2333cd90951ff63317defa8635c9ab91934eab8f Mon Sep 17 00:00:00 2001 From: glax Date: Sun, 16 Jul 2023 18:15:11 +0200 Subject: [PATCH] Mangasee more bad words --- Tranga/Connectors/Mangasee.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga/Connectors/Mangasee.cs b/Tranga/Connectors/Mangasee.cs index 1651790..a2da9d6 100644 --- a/Tranga/Connectors/Mangasee.cs +++ b/Tranga/Connectors/Mangasee.cs @@ -184,7 +184,7 @@ public class Mangasee : Connector { int ret = 0; Regex cleanRex = new("[A-z0-9]*"); - string[] badWords = { "a", "so", "as", "and", "the", "of", "that", "in", "is", "for" }; + string[] badWords = { "a", "an", "no", "ni", "so", "as", "and", "the", "of", "that", "in", "is", "for" }; string[] titleTerms = title.Split(new[] { ' ', '-' }).Where(str => !badWords.Contains(str)).ToArray();