Explorar el Código

VLCLibraryViewController: fix the media selection does not play video

Pierre SAGASPE hace 7 años
padre
commit
8dd30ef0f5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Sources/VLCLibraryViewController.m

+ 1 - 1
Sources/VLCLibraryViewController.m

@@ -580,7 +580,7 @@ static NSString *kUsingTableViewToShowData = @"UsingTableViewToShowData";
     }
 
     [tableView deselectRowAtIndexPath:indexPath animated:YES];
-    NSManagedObject *selectedObject;
+    NSManagedObject *selectedObject = [_mediaDataSource objectAtIndex:indexPath.row];
 
     if (selectedObject != nil)
         [self openMediaObject:selectedObject];