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();