-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels