diff options
Diffstat (limited to 'thetvdbscraper/thetvdbscraper.c')
-rw-r--r-- | thetvdbscraper/thetvdbscraper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thetvdbscraper/thetvdbscraper.c b/thetvdbscraper/thetvdbscraper.c index f4b4b83..4e16a03 100644 --- a/thetvdbscraper/thetvdbscraper.c +++ b/thetvdbscraper/thetvdbscraper.c @@ -24,7 +24,7 @@ cTVDBScraper::~cTVDBScraper() { }
void cTVDBScraper::Scrap(const cEvent *event, int recordingID) {
- string seriesName = event->Title();
+ string seriesName = (event->Title())?event->Title():"";
if (overrides->Ignore(seriesName)) {
return;
}
|