You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2013/07/12 21:15:34 UTC

git commit: fixed issue with new isBinary param to write method

Updated Branches:
  refs/heads/master 783ab3102 -> 33345bdee


fixed issue with new isBinary param to write method


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/33345bde
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/33345bde
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/33345bde

Branch: refs/heads/master
Commit: 33345bdeec1fb993398e730e5289bdf9a95d6d77
Parents: 783ab31
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Fri Jul 12 12:15:17 2013 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Fri Jul 12 12:15:17 2013 -0700

----------------------------------------------------------------------
 src/wp/File.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/33345bde/src/wp/File.cs
----------------------------------------------------------------------
diff --git a/src/wp/File.cs b/src/wp/File.cs
index cde7a1c..215bd39 100644
--- a/src/wp/File.cs
+++ b/src/wp/File.cs
@@ -788,7 +788,8 @@ namespace WPCordovaClassLib.Cordova.Commands
             string filePath = optStrings[0];
             string data = optStrings[1];
             int position = int.Parse(optStrings[2]);
-            string callbackId = optStrings[3];
+            bool isBinary = bool.Parse(optStrings[3]);
+            string callbackId = optStrings[4];
 
             try
             {