Skip to content

Commit

Permalink
Merge pull request #18 from Web3Auth/feat/min-sessionTime_update
Browse files Browse the repository at this point in the history
feat: update min sessionTime to 30 days.
  • Loading branch information
chaitanyapotti authored Jan 6, 2025
2 parents 3714be8 + 913fda9 commit 74a3de6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ class SessionManager(
signature = KeyStoreManager.getECDSASignature(
BigInteger(newSessionKey, 16), gsonData
),
timeout = min(sessionTime, 7 * 86400),
timeout = min(sessionTime, 30 * 86400),
allowedOrigin = allowedOrigin,
namespace = sessionNamespace
)
Expand Down

0 comments on commit 74a3de6

Please sign in to comment.