From 60183f3a05ab0a4410e64b624cb83d4b4b7152c2 Mon Sep 17 00:00:00 2001 From: Jon Desrosiers Date: Tue, 23 Aug 2022 10:05:19 -0400 Subject: [PATCH] Correct typo in `HOUR_IN_SECONDS`. --- includes/Customer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Customer.php b/includes/Customer.php index 08c23b2..ce2ed86 100644 --- a/includes/Customer.php +++ b/includes/Customer.php @@ -196,7 +196,7 @@ public static function throttle() { if ( $retry_count <= 5 ) { $timeout = MINUTE_IN_SECONDS * $retry_count; } elseif ( $retry_count < 10 ) { - $timeout = HOURS_IN_SECONDS * $retry_count; + $timeout = HOUR_IN_SECONDS * $retry_count; } else { $timeout = WEEK_IN_SECONDS; $retry_count = 0;