Skip to content
This repository has been archived by the owner on Apr 24, 2018. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rugk committed Mar 26, 2017
1 parent 5fec606 commit fc6bcf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/library/ThreemaGateway/Model/ActionThrottle.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ protected function getActionLimit($actionType)
if ($xenOptions->threema_gateway_throttle_5min > 0) {
$limitArray[] = [60 * 5, $xenOptions->threema_gateway_throttle_5min];
}
if ($xenOptions->threema_gateway_throttle_5h > 0) {
$limitArray[] = [60 * 60, $xenOptions->threema_gateway_throttle_5h];
if ($xenOptions->threema_gateway_throttle_1h > 0) {
$limitArray[] = [60 * 60, $xenOptions->threema_gateway_throttle_1h];
}
break;
}
Expand Down

0 comments on commit fc6bcf1

Please sign in to comment.