소스 검색

Fix runtime exception

(cherry picked from commit f4ed2eb4c9a8e3a5e4a332baf9cfae04f5c8a3b2)
Felix Paul Kühne 10 년 전
부모
커밋
2e9dfcaaac
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Sources/VLCGoogleDriveController.m

+ 3 - 0
Sources/VLCGoogleDriveController.m

@@ -110,6 +110,9 @@
 
 - (void)downloadFileToDocumentFolder:(GTLDriveFile *)file
 {
+    if (file == nil)
+        return;
+
     if ([file.mimeType isEqualToString:@"application/vnd.google-apps.folder"]) return;
 
     if (!_listOfGoogleDriveFilesToDownload)