We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b011e commit 80d1134Copy full SHA for 80d1134
java/src/main/java/com/genexus/internet/HttpClientJavaLib.java
@@ -714,6 +714,9 @@ public String getString() {
714
charset = StandardCharsets.UTF_8;
715
}
716
String res = EntityUtils.toString(entity, charset);
717
+ if (res.matches(".*[Ã-ÿ].*")) {
718
+ res = EntityUtils.toString(entity, StandardCharsets.UTF_8);
719
+ }
720
eof = true;
721
return res;
722
} catch (IOException e) {
0 commit comments