Appease the linter

pull/21833/head
Travis Ralston 2019-11-26 09:56:04 -07:00
parent 4cec7c41b1
commit d50d8877e0
1 changed files with 4 additions and 2 deletions

View File

@ -83,7 +83,8 @@ export class ThemeWatcher {
// If the user has specifically enabled the system matching option (excluding default), // If the user has specifically enabled the system matching option (excluding default),
// then use that over anything else. We pick the lowest possible level for the setting // then use that over anything else. We pick the lowest possible level for the setting
// to ensure the ordering otherwise works. // to ensure the ordering otherwise works.
const systemThemeExplicit = SettingsStore.getValueAt(SettingLevel.DEVICE, "use_system_theme", null, false, true); const systemThemeExplicit = SettingsStore.getValueAt(
SettingLevel.DEVICE, "use_system_theme", null, false, true);
if (systemThemeExplicit) { if (systemThemeExplicit) {
if (this._preferDark.matches) return 'dark'; if (this._preferDark.matches) return 'dark';
if (this._preferLight.matches) return 'light'; if (this._preferLight.matches) return 'light';
@ -92,7 +93,8 @@ export class ThemeWatcher {
// If the user has specifically enabled the theme (without the system matching option being // If the user has specifically enabled the theme (without the system matching option being
// enabled specifically and excluding the default), use that theme. We pick the lowest possible // enabled specifically and excluding the default), use that theme. We pick the lowest possible
// level for the setting to ensure the ordering otherwise works. // level for the setting to ensure the ordering otherwise works.
const themeExplicit = SettingsStore.getValueAt(SettingLevel.DEVICE, "theme", null, false, true); const themeExplicit = SettingsStore.getValueAt(
SettingLevel.DEVICE, "theme", null, false, true);
if (themeExplicit) return themeExplicit; if (themeExplicit) return themeExplicit;
// If the user hasn't really made a preference in either direction, assume the defaults of the // If the user hasn't really made a preference in either direction, assume the defaults of the