Release v1.6.28

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-04 20:54:49 +01:00
co-authored by Claude Opus 4.6
parent 9a00304a93
commit 20a0a59670
6 changed files with 47 additions and 26 deletions
+1 -1
View File
@@ -295,7 +295,7 @@ function registerIpcHandlers(): void {
});
ipcMain.handle(IPC_CHANNELS.START_ITEMS, (_event: IpcMainInvokeEvent, itemIds: string[]) => {
validateStringArray(itemIds ?? [], "itemIds");
return controller.startItems(itemIds);
return controller.startItems(itemIds ?? []);
});
ipcMain.handle(IPC_CHANNELS.STOP, () => controller.stop());
ipcMain.handle(IPC_CHANNELS.TOGGLE_PAUSE, () => controller.togglePause());