chadopp / mythepisode

TV Series/Shows
2 stars 3 forks source link

Show names with "&" don't retrieve properly from tvrage.com #9

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
TV shows with an "&" fail to retrieve the proper episode information from 
tvrage because of an error with quickinfo.php script provide by tvrage.com.  
The issue can be overcome by removing the & from the show title after passed 
into grabid.pl.

Add the following the $show line after the comment and before my site.

## Get information from tvrage.com using their quickinfo script
$show =~ s/\&//g;
my $site = get "http://services.tvrage.com/tools/quickinfo.php?show=$show";

Original issue reported on code.google.com by chadopp@gmail.com on 2 Sep 2010 at 4:21

GoogleCodeExporter commented 9 years ago
Also found that "#" cause a problem.

Added 
$show =~ s/\&//g;
$show =~ s/\#//g;

Original comment by chadopp@gmail.com on 2 Sep 2010 at 3:46

GoogleCodeExporter commented 9 years ago

Original comment by chadopp@gmail.com on 5 Sep 2010 at 4:24