From 33ab14f51e6a52bee586447407a83b1b0d738683 Mon Sep 17 00:00:00 2001 From: Philipp Lang Date: Tue, 22 Feb 2022 01:05:02 +0100 Subject: [PATCH] Mod cookie expire time --- src/Authentication/MainCookie.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Authentication/MainCookie.php b/src/Authentication/MainCookie.php index 0e3510b..c863e22 100644 --- a/src/Authentication/MainCookie.php +++ b/src/Authentication/MainCookie.php @@ -77,7 +77,7 @@ class MainCookie extends Authenticator { { $lastLoginTime = Carbon::createFromTimestamp(pathinfo($this->file(), PATHINFO_FILENAME)); - return $lastLoginTime->addMinutes(3)->isPast(); + return $lastLoginTime->addMinutes(50)->isPast(); } /**