Dewang Shah created CB-912:
------------------------------
Summary: FileTransfer.download does not fire error callback when
server is unavailable
Key: CB-912
URL: https://issues.apache.org/jira/browse/CB-912
Project: Apache Cordova
Issue Type: Bug
Affects Versions: 1.8.0
Environment: Android/iOS
Others untested
Reporter: Dewang Shah
The download method on FileTransfer never fires the error callback if there is
a network connection but the download URL is not accessible. It simply waits
forever and does not return.
Reproduction:
var fileTransfer = new FileTransfer();
fileTransfer.download('http://nosuchserver/nosuchfile.png', fullPath,
function(entry) {
console.log("download complete: " + entry.fullPath);
}, function(error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("download error code" + error.code);
});
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira