Skip to content
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.

Commit

Permalink
[+] Fixed major bug
Browse files Browse the repository at this point in the history
Int parsing was crashing the production for some reason. (Issue to be analyzed yet)
  • Loading branch information
0x0is1 committed Nov 27, 2022
1 parent 03306df commit ed0ffa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/attemptTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function getAnswer(rno) {
else selid = 1;

var set = prompt('Enter set number: ');
var attempt4me = parseInt(prompt("Attempt this test for you? [y/n]: "));
var attempt4me = prompt("Attempt this test for you? [y/n]: ");
if (attempt4me != "y") {
reg_no = 12114441; // reg no to attempt, retired ofcourse
}
Expand Down

0 comments on commit ed0ffa1

Please sign in to comment.