C9Glax / tranga

Docker-Container to monitor (Manga) Scanlation-Sites for download new chapters.
GNU General Public License v3.0
145 stars 13 forks source link

Mangasee search not working #26

Closed vodkapmp closed 1 year ago

vodkapmp commented 1 year ago

When searching for something with Mangasee there seems to be an issue where it only searches the first word before a space. When I search for "The Great Jahy" the search is just going and going, and looking at logs it is returning everything on Mangasee with "The" in the title. image

C9Glax commented 1 year ago

Problem is, that the search returns all results with any of the search terms in it. So "The Great Jahy" will return all results including "the", "great", and "jahy". This is bad and there is a list that includes these bad terms ("the") - which previously didnt include "the".

Have a look at line 187 in Mangasee.cs: string[] badWords = { "a", "so", "as", "and", "the", "of", "that", "in", "is", "for" }; If you can think of any more words that should be removed from search let me know.