Skip to content

Commit

Permalink
Undid a change to email verification delay that didnt seem to work
Browse files Browse the repository at this point in the history
  • Loading branch information
parislarkins committed Feb 5, 2017
1 parent db1bd12 commit aea7ae2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/pallettown/PalletTown.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ public static void Start(){
if(autoVerify && !avMail.equals("") && !avPass.equals("")){
Log("Account Creation done");

// try {
// Thread.sleep(24000);
// } catch (InterruptedException e) {
// e.printStackTrace();
// }

Log("Verifying accounts...");
EmailVerifier.delayedVerify(avMail, avPass, AccountCreator.success,5, 240000);
// EmailVerifier.verify(avMail, avPass,AccountCreator.success,5);
Log("Waiting 4 minutes to verify emails");
try {
Thread.sleep(240000);
} catch (InterruptedException e) {
e.printStackTrace();
}

// EmailVerifier.delayedVerify(avMail, avPass, AccountCreator.success,5);
EmailVerifier.verify(avMail, avPass,AccountCreator.success,5);
Log("Done!");
}

Expand Down

0 comments on commit aea7ae2

Please sign in to comment.