Преглед на файлове

VLCHTTPFileDownloader: Add guard for tvOS

Soomin Lee преди 6 години
родител
ревизия
8416fbf0c3
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  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];