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) { onLanguageChange: function(newLang) {
UserSettingsStore.setLocalSetting('language', l); if(this.state.language !== newLang) {
UserSettingsStore.setLocalSetting('language', newLang);
this.setState({ this.setState({
language: l, language: newLang,
}); });
PlatformPeg.get().reload(); PlatformPeg.get().reload();
}
}, },
_renderLanguageSetting: function () { _renderLanguageSetting: function () {