fork: Use utf8 for channel encoding

v0.7.4-release
Ryan Dahl 2011-05-17 10:51:30 -07:00
parent 85bc8d02fa
commit 0271b785a1
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ function setupChannel(target, fd) {
target._channel.readable = true;
target._channel.resume();
target._channel.setEncoding('ascii');
target._channel.setEncoding('utf8');
var buffer = '';
target._channel.on('data', function(d) {