File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/src/debug/java/com/tns
runtime/src/main/java/com/tns Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ static String getErrorMessage(Throwable ex) {
169169 ex .printStackTrace (ps );
170170
171171 try {
172- content = baos .toString ("US-ASCII " );
172+ content = baos .toString ("UTF-8 " );
173173 } catch (UnsupportedEncodingException e ) {
174174 content = e .getMessage ();
175175 }
@@ -423,4 +423,4 @@ public void onClick(View v) {
423423 return view ;
424424 }
425425 }
426- }
426+ }
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ public static String getStackTraceErrorMessage(Throwable ex) {
292292 ex .printStackTrace (ps );
293293
294294 try {
295- content = baos .toString ("US-ASCII " );
295+ content = baos .toString ("UTF-8 " );
296296 String jsStackTrace = Runtime .getJSStackTrace (ex );
297297 if (jsStackTrace != null ) {
298298 content = getStackTraceOnly (content );
You can’t perform that action at this time.
0 commit comments