Merge pull request #947 from MTRNord/patch-1

Fix vector-im/riot-web#4042
pull/21833/head
Matthew Hodgson 2017-05-27 23:29:15 +01:00 committed by GitHub
commit 02c2930531
1 changed files with 8 additions and 6 deletions

View File

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