fix locale 404 not default

This commit is contained in:
Jay
2017-04-05 15:35:32 +08:00
parent b684672ad2
commit 34f2d0e24a
3 changed files with 13 additions and 7 deletions
+2 -1
View File
@@ -62215,7 +62215,8 @@ var Root = function (_React$Component) {
value: function componentDidMount() {
var _this2 = this;
var lang = navigator.language.substring(0, 2);
var slang = sessionStorage.getItem('lang');
var lang = slang || navigator.language.substring(0, 2);
fetch('/locales/' + lang + '.json').then(function (response) {
if (response.status == 200) return response.json();
return {};