If I run an API query: https://api.tvmaze.com/search/shows?q=English the highest scoring match is:
{
"score": 0.6992032,
"show": {
"id": 72758,
"url": "https://www.tvmaze.com/shows/72758/english-teacher",
"name": "English Teacher",
and the next highest scoring match is:
{
"score": 0.6981286,
"show": {
"id": 55215,
"url": "https://www.tvmaze.com/shows/55215/the-english",
"name": "The English",
So if we drop the article The from the results we have an exact match on what is the second highest scoring match. I would think that that second highest scoring match should actually be the highest scoring match since it matches 100% after dropping the article.
Thoughts?

