mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-19 08:53:30 +00:00
Fixed encoding issue with objj console.
[#108 state:resolved responsible:tlrobinson]
This commit is contained in:
@@ -239,7 +239,7 @@ if (typeof Packages != "undefined") {
|
||||
|
||||
objj_console = function()
|
||||
{
|
||||
var br = new Packages.java.io.BufferedReader(new Packages.java.io.InputStreamReader(Packages.java.lang.System["in"]));
|
||||
var br = new Packages.java.io.BufferedReader(new Packages.java.io.InputStreamReader(Packages.java.lang.System["in"], "UTF-8"));
|
||||
|
||||
keepgoing = true;
|
||||
while (keepgoing)
|
||||
|
||||
Reference in New Issue
Block a user