diff --git a/electron/Index.vue b/electron/Index.vue index 6c391fb..873a2bc 100644 --- a/electron/Index.vue +++ b/electron/Index.vue @@ -494,9 +494,9 @@ // Hack! if (process.platform === 'win32') { if (core.state.generalSettings?.risingDisableWindowsHighContrast) { - document.querySelector('html').classList.add('disableWindowsHighContrast'); + document.querySelector('html')?.classList.add('disableWindowsHighContrast'); } else { - document.querySelector('html').classList.remove('disableWindowsHighContrast'); + document.querySelector('html')?.classList.remove('disableWindowsHighContrast'); } } diff --git a/electron/Window.vue b/electron/Window.vue index 9ecf24c..a4dd642 100644 --- a/electron/Window.vue +++ b/electron/Window.vue @@ -48,7 +48,6 @@ import {GeneralSettings} from './common'; import { getSafeLanguages, updateSupportedLanguages } from './language'; import log from 'electron-log'; - import core from '../chat/core'; const browserWindow = remote.getCurrentWindow(); @@ -389,9 +388,9 @@ // Hack! if (process.platform === 'win32') { if (this.settings?.risingDisableWindowsHighContrast) { - document.querySelector('html').classList.add('disableWindowsHighContrast'); + document.querySelector('html')?.classList.add('disableWindowsHighContrast'); } else { - document.querySelector('html').classList.remove('disableWindowsHighContrast'); + document.querySelector('html')?.classList.remove('disableWindowsHighContrast'); } }