Ver código fonte

Dropbox: fix download location

Felix Paul Kühne 12 anos atrás
pai
commit
480fae19a5
1 arquivos alterados com 1 adições e 2 exclusões
  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];