Skip to content

Commit

Permalink
pabloroca#1 Error in function mustbethrottled, fix by GenaritoBike
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloroca committed Aug 31, 2016
1 parent f4555bd commit ff441c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/APIRateLimit.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected function mustbethrottled () {
$result = null;
}

if ($result['requests'] > $this->requests) {
if ($result['requests'] >= $this->requests) {
return TRUE;
}

Expand Down

0 comments on commit ff441c1

Please sign in to comment.