فهرست منبع

Dropbox: fix download location

Felix Paul Kühne 12 سال پیش
والد
کامیت
480fae19a5
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      AspenProject/VLCDropboxController.m

+ 1 - 2
AspenProject/VLCDropboxController.m

@@ -56,8 +56,7 @@
 {
     if (!file.isDirectory) {
         NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
-        NSString *filePath = [searchPaths[0] stringByAppendingString:file.filename];
-        //FIXME: add UI hook to display activity
+        NSString *filePath = [searchPaths[0] stringByAppendingFormat:@"/%@", file.filename];
 
         [[self restClient] loadFile:file.path intoPath:filePath];