Skip to content

Commit

Permalink
Merge pull request #10 from newfold-labs/update/increase-timeframe
Browse files Browse the repository at this point in the history
Update/increase timeframe for SSO Url
  • Loading branch information
wpalani authored Jul 18, 2024
2 parents 3281a2a + 6c58e8d commit 663e82e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/SSO_Helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static function validateToken( $token ) {

// Validate timeframe
$time = array_shift( $parts );
if ( ! $time || ( $time + 60 ) < time() ) {
if ( ! $time || ( $time + 600 ) < time() ) {
return false;
}

Expand Down

0 comments on commit 663e82e

Please sign in to comment.