[
https://issues.apache.org/jira/browse/CB-14197?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16551216#comment-16551216
]
ASF GitHub Bot commented on CB-14197:
-------------------------------------
macdonst closed pull request #237: CB-14197: (all) Fix for createFile/writeFile
silently failing to send 'write' action
URL: https://github.com/apache/cordova-plugin-file/pull/237
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/www/FileWriter.js b/www/FileWriter.js
index c6de375..75ec9dc 100644
--- a/www/FileWriter.js
+++ b/www/FileWriter.js
@@ -21,6 +21,7 @@
var exec = require('cordova/exec');
var FileError = require('./FileError');
+var FileReader = require('./FileReader');
var ProgressEvent = require('./ProgressEvent');
/**
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> createFile/writeFile does not consistently execute the 'write' action
> resulting in files of size 0
> --------------------------------------------------------------------------------------------------
>
> Key: CB-14197
> URL: https://issues.apache.org/jira/browse/CB-14197
> Project: Apache Cordova
> Issue Type: Bug
> Components: cordova-plugin-file
> Reporter: Will Fairclough
> Priority: Major
>
> Occasionally when calling the *createFile* API the *write* action does not
> get called. It was not very consistent though and it is very hard to
> reproduce. It seems as though the *onload* event was not firing on the
> fileReader in the write method resulting in the file never getting written
> and no callbacks being fired.
> {code:java}
> if (data instanceof File || (!isProxySupportBlobNatively && supportsBinary &&
> data instanceof Blob)) {
> var fileReader=new FileReader();
> /* eslint-enable no-undef */
> fileReader.onload=function () {
> // Call this method again, with the arraybuffer as argument
> FileWriter.prototype.write.call(that, this.result, true/*
> isPendingBlobReadResult */);
> };
> ...
> }
> {code}
> We found we would notice the issue more consistently when running the app in
> the Android emulator subsequent times in a row with the command:
> {code:java}
> $ cordova run android{code}
> We fixed this by requiring the FileReader module:
> [https://github.com/suitespot/cordova-plugin-file/commit/2a0da7f1a43e88b801ee70a3462c3df829f4c927]
> With this change we have not noticed the issue anymore.
> I also believe this *ionic-native* issue is related to this:
> [https://github.com/ionic-team/ionic-native/issues/2067#issuecomment-403600570]
>
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]