Return-Path: X-Original-To: apmail-cordova-issues-archive@minotaur.apache.org Delivered-To: apmail-cordova-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9125710C91 for ; Fri, 5 Dec 2014 20:30:17 +0000 (UTC) Received: (qmail 13938 invoked by uid 500); 5 Dec 2014 20:30:17 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 13921 invoked by uid 500); 5 Dec 2014 20:30:17 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 13910 invoked by uid 99); 5 Dec 2014 20:30:17 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Dec 2014 20:30:17 +0000 Date: Fri, 5 Dec 2014 20:30:17 +0000 (UTC) From: "ASF subversion and git services (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CB-8014) fileKey option is being sent with a wrong value due to a mistake in the code MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ 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: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org