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