Release v1.5.90

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-04 03:04:49 +01:00
co-authored by Claude Opus 4.6
parent 92101e249a
commit 254612a49b
4 changed files with 19 additions and 7 deletions
+1 -1
View File
@@ -293,7 +293,7 @@ function registerIpcHandlers(): void {
return controller.startPackages(packageIds);
});
ipcMain.handle(IPC_CHANNELS.START_ITEMS, (_event: IpcMainInvokeEvent, itemIds: string[]) => {
if (!Array.isArray(itemIds)) throw new Error("itemIds muss ein Array sein");
validateStringArray(itemIds ?? [], "itemIds");
return controller.startItems(itemIds);
});
ipcMain.handle(IPC_CHANNELS.STOP, () => controller.stop());