From d2d4fcb6bd1361b7a498b7813358abcb68318952 Mon Sep 17 00:00:00 2001 From: swaggboi Date: Sun, 31 Jul 2022 23:17:15 -0400 Subject: [PATCH] Increase session to a year --- PostText.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PostText.pl b/PostText.pl index 23c4fbc..cfa45cc 100755 --- a/PostText.pl +++ b/PostText.pl @@ -20,7 +20,7 @@ helper pg => sub { # Begin routing under sub ($c) { - $c->session(expires => time() + 1800); + $c->session(expires => time() + 31536000); 1; };