diff --git a/src/main/ipcs/bs-download-ipcs.ts b/src/main/ipcs/bs-download-ipcs.ts index 009624c6..b0de452d 100644 --- a/src/main/ipcs/bs-download-ipcs.ts +++ b/src/main/ipcs/bs-download-ipcs.ts @@ -27,8 +27,9 @@ ipcMain.on('bs-download.start', async (event, args: DownloadInfo) => { BSInstallerService.getInstance().downloadBsVersion(args); }); -ipcMain.on(`bs-download${DownloadEventType.GUARD_CODE}`, async (event, args) => { +ipcMain.on(`bs-download.${DownloadEventType.GUARD_CODE}`, async (event, args) => { BSInstallerService.getInstance().sendInputProcess(args); + console.log("**** "+args); })