Github user daserge commented on a diff in the pull request:
https://github.com/apache/cordova-plugin-file-transfer/pull/71#discussion_r42887803
--- Diff: src/ios/CDVFileTransfer.m ---
@@ -552,6 +552,8 @@ -
(void)connectionDidFinishLoading:(NSURLConnection*)connection
if (self.direction == CDV_TRANSFER_UPLOAD) {
uploadResponse = [[NSString alloc] initWithData:self.responseData
encoding:NSUTF8StringEncoding];
+ if (uploadResponse == nil)
+ uploadResponse = [[NSString alloc] initWithData:
self.responseData encoding:NSISOLatin1StringEncoding];
--- End diff --
On Android Latin1 spec symbols result in � in webview.
On Windows such an exception occurs on reading the response stream:
```
Exception is about to be caught by JavaScript library code at line 178,
column 37 in
ms-appx://io.cordova.hellocordova/www/plugins/cordova-plugin-file-transfer/src/windows/FileTransferProxy.js
0x80070459 - JavaScript runtime error: No mapping for the Unicode character
exists in the target multi-byte code page.
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]