mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
Don't explode if the SdkConfig isn't available
This can happen prior to logging in, for some reason. Signed-off-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
parent
99ee58d13a
commit
72517f95bb
@ -64,7 +64,7 @@ module.exports = React.createClass({
|
||||
value={this.props.value}
|
||||
checked={val === this.props.value}
|
||||
onChange={this.onChange}
|
||||
/>
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -24,7 +24,8 @@ import SdkConfig from "../SdkConfig";
|
||||
*/
|
||||
export default class ConfigSettingsHandler extends SettingsHandler {
|
||||
getValue(settingName, roomId) {
|
||||
const settingsConfig = SdkConfig.get()["settingDefaults"];
|
||||
const config = SdkConfig.get() || {};
|
||||
const settingsConfig = config["settingDefaults"];
|
||||
if (!settingsConfig || !settingsConfig[settingName]) return null;
|
||||
return settingsConfig[settingName];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user