Prechádzať zdrojové kódy

Fix runtime exception

(cherry picked from commit f4ed2eb4c9a8e3a5e4a332baf9cfae04f5c8a3b2)
Felix Paul Kühne 10 rokov pred
rodič
commit
2e9dfcaaac
1 zmenil súbory, kde vykonal 3 pridanie a 0 odobranie
  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)