Skip to content

Commit

Permalink
set time back to 5 min
Browse files Browse the repository at this point in the history
  • Loading branch information
Ry-DS committed Oct 13, 2017
1 parent 10544c8 commit 038c07a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void run() {
iterator.remove();
continue;
}
if (System.currentTimeMillis() - entry.getValue() > /*5 * 60 * 1000*/10000) {
if (System.currentTimeMillis() - entry.getValue() > 5 * 60 * 1000) {
long time = session.getTimeManager().stopUser(slackUser);
long min = TimeUnit.MILLISECONDS.toMinutes(time);
long hrs = TimeUnit.MILLISECONDS.toHours(time);
Expand Down

0 comments on commit 038c07a

Please sign in to comment.