Преглед изворни кода

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];