[ 
https://issues.apache.org/jira/browse/CB-8014?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14236055#comment-14236055
 ] 

ASF subversion and git services commented on CB-8014:
-----------------------------------------------------

Commit c0fd1a3f4688b0742cff682dbb423cbe374bccb4 in 
cordova-plugin-file-transfer's branch refs/heads/master from [~purplecabbage]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file-transfer.git;h=c0fd1a3
 ]

Merge branch 'CB-8014' of 
https://github.com/marti1125/cordova-plugin-file-transfer


> fileKey option is being sent with a wrong value due to a mistake in the code
> ----------------------------------------------------------------------------
>
>                 Key: CB-8014
>                 URL: https://issues.apache.org/jira/browse/CB-8014
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: BlackBerry, FirefoxOS
>            Reporter: Felipe Lima
>              Labels: easyfix
>
> fileKey option is being sent with a wrong value due to a mistake in the code 
> for BlackBerry10 and FirefoxOS.
> BlackBerry10:
> {code:title=www/blackberry10/xhrFileTransfer.js|borderStyle=solid}
> ...
> upload: function(win, fail, args) {
>     var filePath = args[0],
>         server = args[1],
>         fileKey = args[9],    // Here is the mistake. The index should be 2.
>         fileName = args[3],
>         mimeType = args[4],
> ...
> {code}
> FirefoxOS:
> {code:title=www/firefoxos/FileTransferProxy.js|borderStyle=solid}
> ...
> upload: function(successCallback, errorCallback, args) {
>     var filePath = args[0],
>         server = args[1],
>         fileKey = args[9],    // Here is the mistake. The index should be 2.
>         fileName = args[3],
>         mimeType = args[4],
> ...
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to