From 91e1cc02ced9bcad1d23827b2c832d4ce4fd8079 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Wed, 5 Apr 2023 04:20:13 +0200 Subject: [PATCH] windows: fix notification title & icon --- src/main/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/index.ts b/src/main/index.ts index c3fea0d..ea41358 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -32,7 +32,9 @@ if (!app.requestSingleInstanceLock()) { }); app.whenReady().then(async () => { - if (process.platform === "darwin") + if (process.platform === "win32") + app.setAppUserModelId("dev.vencord.desktop"); + else if (process.platform === "darwin") app.dock.setIcon(ICON_PATH); createWindows();