From f6529c9eaf9f7390ea37e63e9c9b4e440bf24406 Mon Sep 17 00:00:00 2001 From: verticalsync <60797172+verticalsync@users.noreply.github.com> Date: Sun, 14 Jul 2024 19:59:45 +0300 Subject: [PATCH] revert ipc names --- src/main/ipc.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/ipc.ts b/src/main/ipc.ts index f9d8517..67bc81a 100644 --- a/src/main/ipc.ts +++ b/src/main/ipc.ts @@ -154,7 +154,7 @@ open(VENCORD_QUICKCSS_FILE, "a+").then(fd => { VENCORD_QUICKCSS_FILE, { persistent: false }, debounce(async () => { - mainWin?.webContents.postMessage("SuncordQuickCssUpdate", await readCss()); + mainWin?.webContents.postMessage("VencordQuickCssUpdate", await readCss()); }, 50) ); }); @@ -164,6 +164,6 @@ watch( VENCORD_THEMES_DIR, { persistent: false }, debounce(() => { - mainWin?.webContents.postMessage("SuncordThemeUpdate", void 0); + mainWin?.webContents.postMessage("VencordThemeUpdate", void 0); }) );