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) <noreply@anthropic.com>
This commit is contained in:
xRangerDE 2026-03-29 04:18:34 +02:00
parent f9a0fdcf3d
commit 37d75fac24

View File

@ -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();