This commit is contained in:
Marcel 2017-05-27 21:11:00 +02:00 committed by GitHub
parent 063230af03
commit a30110b5d3

View file

@ -546,11 +546,13 @@ module.exports = React.createClass({
},
onLanguageChange: function(l) {
UserSettingsStore.setLocalSetting('language', l);
this.setState({
language: l,
});
PlatformPeg.get().reload();
if(this.state.language !== l) {
UserSettingsStore.setLocalSetting('language', l);
this.setState({
language: l,
});
PlatformPeg.get().reload();
}
},
_renderLanguageSetting: function () {