We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55426b1 commit 1d116bbCopy full SHA for 1d116bb
src/Requests/Verifier.php
@@ -189,7 +189,7 @@ public function isExpired(int $tolerance) : bool
189
$issuedAt =
190
Carbon::parse($this->headers->get('X-SIGNED-TIMESTAMP', '1901-01-01 12:00:00'));
191
192
- return Carbon::now()->diffInSeconds($issuedAt) > 60;
+ return Carbon::now()->diffInSeconds($issuedAt) > $tolerance;
193
}
194
195
/**
0 commit comments