Ticket #341: 341.diff
| File 341.diff, 597 bytes (added by wazza, 3 years ago) |
|---|
-
NSFileManager-Extensions.m
119 119 if([name isEqualToString:@"Cover Art"]) 120 120 return NO; 121 121 122 return ([allExtensions containsObject:[path pathExtension]] || [self isDirectory:path]); 122 BOOL isDir = NO; 123 return ([allExtensions containsObject:[path pathExtension]] || ([self fileExistsAtPath:path isDirectory:&isDir] && isDir)); 123 124 } 124 125 125 126 + (NSString *)previewArtPathForTV:(NSString *)show season:(unsigned int)seasonNum
