Browse Source

VLCLibraryViewController: fix the media selection does not play video

Pierre SAGASPE 7 years ago
parent
commit
8dd30ef0f5
1 changed files with 1 additions and 1 deletions
  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];