mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 14:43:09 +02:00
Replace deprecated MediaQueryList.addListener()
(#12112)
This commit is contained in:
parent
9dcccbc8e1
commit
4a832e87c0
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ export async function common(createVue: () => App<Element>) {
|
|||
defaultStore.set('darkMode', isDeviceDarkmode());
|
||||
}
|
||||
|
||||
window.matchMedia('(prefers-color-scheme: dark)').addListener(mql => {
|
||||
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (mql) => {
|
||||
if (ColdDeviceStorage.get('syncDeviceDarkMode')) {
|
||||
defaultStore.set('darkMode', mql.matches);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue