Don't tell IE it's utf8. Just send it. Otherwise it'll snuff it!
(As if we wouldn't look forward to that...)pull/1297/head
parent
51f6ac6b71
commit
d9d0312a9e
|
@ -110,15 +110,16 @@ exports.expressCreateServer = function(n, args) {
|
||||||
//works with /locale/en and /locale/en.json requests
|
//works with /locale/en and /locale/en.json requests
|
||||||
var locale = req.params.locale.split('.')[0];
|
var locale = req.params.locale.split('.')[0];
|
||||||
if (exports.availableLangs.hasOwnProperty(locale)) {
|
if (exports.availableLangs.hasOwnProperty(locale)) {
|
||||||
res.setHeader('Content-Type', 'application/json; charset=utf8');
|
// Don't include utf8 encoding (see https://forum.jquery.com/topic/the-problem-with-ie8-and-encoding-error-c00ce56e)
|
||||||
res.send('{"'+locale+'":'+JSON.stringify(locales[locale])+'}');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
|
res.send('{"'+locale+'":'+JSON.stringify(locales[locale])+'}');
|
||||||
} else {
|
} else {
|
||||||
res.send(404, 'Language not available');
|
res.send(404, 'Language not available');
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
args.app.get('/locales.json', function(req, res) {
|
args.app.get('/locales.json', function(req, res) {
|
||||||
res.setHeader('Content-Type', 'application/json; charset=utf8');
|
res.setHeader('Content-Type', 'application/json');// don't send encoding (see above)
|
||||||
res.send(localeIndex);
|
res.send(localeIndex);
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue