CB-6106: Ensure that nativeURL is used by file transfer download

This commit is contained in:
Ian Clelland
2014-02-27 16:40:32 -05:00
parent 0779c71e04
commit ed24e210f4
+1
View File
@@ -185,6 +185,7 @@ FileTransfer.prototype.download = function(source, target, successCallback, erro
entry.name = result.name;
entry.fullPath = result.fullPath;
entry.filesystem = new FileSystem(result.filesystemName || (result.filesystem == window.PERSISTENT ? 'persistent' : 'temporary'));
entry.nativeURL = result.nativeURL;
successCallback(entry);
}
};