Ticket #235: ignore_tv_hits_in_film_import.diff
| File ignore_tv_hits_in_film_import.diff, 0.9 KB (added by wazza, 4 years ago) |
|---|
-
SapphireFrappliance/SapphireMovieImporter.m
633 633 /* Skip image links */ 634 634 else if(resultURL == nil || [resultTitleValue characterAtIndex:0] == 160) 635 635 continue; 636 /*Skip Video Game titles (VG) */637 if([resultTitleValue rangeOfString:@"(VG)"].location != NSNotFound )636 /*Skip Video Game titles (VG) and TV Series (Either (TV) or (TV Series))*/ 637 if([resultTitleValue rangeOfString:@"(VG)"].location != NSNotFound || [resultTitleValue rangeOfString:@"(TV"].location != NSNotFound ) 638 638 continue ; 639 639 [ret addObject:[NSDictionary dictionaryWithObjectsAndKeys: 640 640 [[result objectsForXQuery:IMDB_RESULT_NAME_XPATH error:&error] objectAtIndex:0], @"name",
