Update main.js

pull/1/merge
Elijah Bansley 2018-05-17 12:14:51 -05:00 committed by GitHub
parent 148f276010
commit c6932acf8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ document.getElementById("goButton").addEventListener("click", async () => {
}
var payloadToLog = "";
for (var i = 0; i < payload.length; i++) {
payloadToLog += hexToString(payload[i]);
payloadToLog += "0x" + payload[i].toString(16) + ", ";
}
logOutput(payloadToLog);
const storedpayload = payloadToLog;