Skip to content

Commit f7248ee

Browse files
committed
Extend default cookie expiration for storeId from 9 to 90 days.
1 parent a8fcb95 commit f7248ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/startioSystem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function getCachedId() {
3636
}
3737

3838
function storeId(id, expiresInDays) {
39-
expiresInDays = expiresInDays || 9;
39+
expiresInDays = expiresInDays || 90;
4040
const expirationDate = new Date(Date.now() + expiresInDays * 24 * 60 * 60 * 1000).toUTCString();
4141

4242
if (storage.cookiesAreEnabled()) {

0 commit comments

Comments
 (0)