소스 검색

Local Server Folder List: fix ftp download URL creation

Felix Paul Kühne 12 년 전
부모
커밋
77fd9eabf3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      AspenProject/VLCLocalServerFolderListViewController.m

+ 1 - 1
AspenProject/VLCLocalServerFolderListViewController.m

@@ -265,7 +265,7 @@
 
 - (void)_downloadFTPFile:(NSString *)fileName
 {
-    NSURL *URLToQueue = [NSURL URLWithString:[[@"ftp" stringByAppendingFormat:@"://%@%@/%@", [self _credentials], _ftpServerAddress, _ftpServerPath] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
+    NSURL *URLToQueue = [NSURL URLWithString:[[@"ftp" stringByAppendingFormat:@"://%@%@/%@/%@", [self _credentials], _ftpServerAddress, _ftpServerPath, fileName] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
 
     [[(VLCAppDelegate*)[UIApplication sharedApplication].delegate downloadViewController] addURLToDownloadList:URLToQueue];
 }