Fix the confirmation never expiring.

This commit is contained in:
graywolf336 2014-07-24 23:17:20 -05:00
parent d3a7ef0e9d
commit 1ea60ca106

View File

@ -653,7 +653,8 @@ public class JailManager {
/** Returns true if the confirmation has expired, false if it is still valid. */ /** Returns true if the confirmation has expired, false if it is still valid. */
public boolean confirmingHasExpired(String name) { public boolean confirmingHasExpired(String name) {
return this.confirms.get(name).getExpiryTime() >= (System.currentTimeMillis() + 5000L); //If the expiry time is LESS than the current time, it has expired
return this.confirms.get(name).getExpiryTime() < System.currentTimeMillis();
} }
/** Returns the original arguments for what we are confirming. */ /** Returns the original arguments for what we are confirming. */