diff --git a/src/TokenType/MAC.php b/src/TokenType/MAC.php index a9ee78cd..53f302d9 100644 --- a/src/TokenType/MAC.php +++ b/src/TokenType/MAC.php @@ -88,7 +88,7 @@ class MAC extends AbstractTokenType implements TokenTypeInterface return; } - if ((int) $params->get('ts') !== time()) { + if (abs($params->get('ts') - time()) > 300) { return; }