Skip to content

UTF8 #3

@donbonifacio

Description

@donbonifacio

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions