Small fix

This commit is contained in:
M66B 2022-06-10 17:34:22 +02:00
parent 2867e759f4
commit 92f3c70b00
1 changed files with 1 additions and 1 deletions

View File

@ -3234,7 +3234,7 @@ public class MessageHelper {
Log.w(new Throwable("Charset=" + cs + " detected=" + detected));
if (StandardCharsets.UTF_8.equals(detected)) {
charset = null;
result = new String(result.getBytes(cs), detected);
result = new String(result.getBytes(StandardCharsets.ISO_8859_1), detected);
}
}
} catch (Throwable ex) {