Reload automatically when changing cross-signing flag

This commit is contained in:
J. Ryan Stinnett 2019-11-15 11:31:19 +00:00
parent 50cccd3212
commit b8c0a0fe72
2 changed files with 4 additions and 3 deletions

View file

@ -23,7 +23,7 @@ import {
} from "./controllers/NotificationControllers";
import CustomStatusController from "./controllers/CustomStatusController";
import ThemeController from './controllers/ThemeController';
import LowBandwidthController from "./controllers/LowBandwidthController";
import ReloadOnChangeController from "./controllers/ReloadOnChangeController";
// These are just a bunch of helper arrays to avoid copy/pasting a bunch of times
const LEVELS_ROOM_SETTINGS = ['device', 'room-device', 'room-account', 'account', 'config'];
@ -151,6 +151,7 @@ export const SETTINGS = {
displayName: _td("Enable cross-signing to verify per-user instead of per-device"),
supportedLevels: LEVELS_FEATURE,
default: false,
controller: new ReloadOnChangeController(),
},
"useCiderComposer": {
displayName: _td("Use the new, faster, composer for writing messages"),
@ -433,7 +434,7 @@ export const SETTINGS = {
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG,
displayName: _td('Low bandwidth mode'),
default: false,
controller: new LowBandwidthController(),
controller: new ReloadOnChangeController(),
},
"fallbackICEServerAllowed": {
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS,

View file

@ -17,7 +17,7 @@ limitations under the License.
import SettingController from "./SettingController";
import PlatformPeg from "../../PlatformPeg";
export default class LowBandwidthController extends SettingController {
export default class ReloadOnChangeController extends SettingController {
onChange(level, roomId, newValue) {
PlatformPeg.get().reload();
}