bricks
bricks copied to clipboard
UTF8
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.
I will try to add a sane method for this over the weekend. Thanks!