Skip to content

Commit

Permalink
Merge pull request #9 from ramyakrishnai/update/increase-time-frame
Browse files Browse the repository at this point in the history
increasing timeframe to 10 mins for the sso
  • Loading branch information
ramyakrishnai authored Jun 21, 2024
2 parents 3281a2a + ca81891 commit 6c58e8d
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 6c58e8d

Please sign in to comment.