From 37d75fac2462e6a20e131dabf7d32128a3406f6d Mon Sep 17 00:00:00 2001 From: xRangerDE Date: Sun, 29 Mar 2026 04:18:34 +0200 Subject: [PATCH] fix: Windows notification shows 'Twitch VOD Manager' instead of 'electron.app.Electron' Set app.setAppUserModelId('com.twitch.vodmanager') on startup so Windows notifications display the correct app name. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.ts b/src/main.ts index 9c7cd53..a96a59b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3853,6 +3853,7 @@ ipcMain.handle('save-video-dialog', async (_, defaultName: string) => { // APP LIFECYCLE // ========================================== app.whenReady().then(() => { + app.setAppUserModelId('com.twitch.vodmanager'); refreshBundledToolPaths(true); startMetadataCacheCleanup(); startDebugLogFlushTimer();