Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
revert ipc names
Browse files Browse the repository at this point in the history
  • Loading branch information
verticalsync committed Jul 14, 2024
1 parent 5451ad5 commit f6529c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/ipc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);
});
Expand All @@ -164,6 +164,6 @@ watch(
VENCORD_THEMES_DIR,
{ persistent: false },
debounce(() => {
mainWin?.webContents.postMessage("SuncordThemeUpdate", void 0);
mainWin?.webContents.postMessage("VencordThemeUpdate", void 0);
})
);

0 comments on commit f6529c9

Please sign in to comment.