Bläddra i källkod

VLCHTTPFileDownloader: Add guard for tvOS

Soomin Lee 6 år sedan
förälder
incheckning
8416fbf0c3
1 ändrade filer med 2 tillägg och 0 borttagningar
  1. 2 0
      Sources/VLCHTTPFileDownloader.m

+ 2 - 0
Sources/VLCHTTPFileDownloader.m

@@ -204,9 +204,11 @@
     if ([fileManager fileExistsAtPath:_filePath]) {
         [fileManager moveItemAtPath:_filePath toPath:finalFilePath error:nil];
         [[VLCMediaFileDiscoverer sharedInstance] performSelectorOnMainThread:@selector(updateMediaList) withObject:nil waitUntilDone:NO];
+#if TARGET_OS_IOS
         // FIXME: Replace notifications by cleaner observers
         [[NSNotificationCenter defaultCenter] postNotificationName:NSNotification.VLCNewFileAddedNotification
                                                             object:self];
+#endif
     }
 
     [self.delegate downloadEnded];