Skip to content

Commit

Permalink
Lower the website request cooldown from 1h to 30m.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bevinsky committed Feb 18, 2020
1 parent 8a50e59 commit 3e7a8c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requests_.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def handle_request(self, trackid, ip):
print "Extracted iptime of: ", iptime

now = int(time.time())
if now - iptime > 3600*1:
if now - iptime > 1800:
canrequest_ip = True

if debug:
Expand Down

0 comments on commit 3e7a8c9

Please sign in to comment.