- fix #27: "uploadFile" method doesn't return data object on iOS

- update version number
This commit is contained in:
Sefa Ilkimen
2017-11-03 15:51:19 +01:00
parent 8c55572eb8
commit 068b25b6f9
4 changed files with 45 additions and 2 deletions
+1 -1
View File
@@ -366,7 +366,7 @@
}
} progress:nil success:^(NSURLSessionTask *task, id responseObject) {
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
[self handleSuccess:dictionary withResponse:(NSHTTPURLResponse*)task.response andData:nil];
[self handleSuccess:dictionary withResponse:(NSHTTPURLResponse*)task.response andData:responseObject];
CDVPluginResult *pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:dictionary];
[weakSelf.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];