From c3109383bc4bdfe4c97f564657a66aca56a8999d Mon Sep 17 00:00:00 2001 From: Joaquin Date: Thu, 11 May 2023 13:29:21 +0300 Subject: [PATCH] [1.2.0/HWID] Add some final polish Completed HWID activation mode and added some finishing touches, not 100% polished so I might come back and make it a bit more elegant in the future --- webPage/winhwid/genticket.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/webPage/winhwid/genticket.html b/webPage/winhwid/genticket.html index 8a734b4..6ed4543 100644 --- a/webPage/winhwid/genticket.html +++ b/webPage/winhwid/genticket.html @@ -19,7 +19,7 @@ - + @@ -48,8 +48,9 @@ }); - ipcRenderer.on('ticketout', (ticket) => { - txtbox.textContent = String(ticket); + ipcRenderer.on('ticketout', (event, ticket) => { + txtbox.textContent = String(ticket).toString(); + console.log(ticket); nextbut.style.display = 'block'; txtbox.style.display = 'block'; });