- May 13, 2007
- 418
- 37
- Home Country
-
United Kingdom
Not a major one, and via the config setup app you can type in the ' when it is not found, but might be an easy one to fix.
Local shows cannot contain ' as it is an invalid char.
When searching for any show where an s is seen with spaces on either side at the end of a word why not auto incert the '
Again, sorry not looked at the code, but I image if the series looks like
It s Always Sunny in Philadelphia
you could do something like
strShow = strShow.Replace(" s ", "'s ");
before you try to match it to an online show.
Local shows cannot contain ' as it is an invalid char.
When searching for any show where an s is seen with spaces on either side at the end of a word why not auto incert the '
Again, sorry not looked at the code, but I image if the series looks like
It s Always Sunny in Philadelphia
you could do something like
strShow = strShow.Replace(" s ", "'s ");
before you try to match it to an online show.