bricks icon indicating copy to clipboard operation
bricks copied to clipboard

UTF8

Open donbonifacio opened this issue 12 years ago • 1 comments

Bricks misbehaves with UTF8 data. Something like: response.write("Configurações");

Will be displayed improperly.

I had to use the actual response and instead of: response.write(text); response.end();

I had to: var actualResponse = response._actual_response; actualResponse.write(text, 'utf8'); actualResponse.end();

This works.

donbonifacio avatar Jan 10 '13 15:01 donbonifacio

I will try to add a sane method for this over the weekend. Thanks!

JerrySievert avatar Jan 17 '13 15:01 JerrySievert