Set charset when serving logs

master
Miikka Virtanen 2016-12-31 19:13:45 +02:00
parent 6e8f729c42
commit 8e1c59bac4
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ function serveLogs(res, pathParts) {
return;
}
res.setHeader('Content-Type', 'text/plain');
res.setHeader('Content-Type', 'text/plain; charset=UTF-8');
res.end(data);
});
});