From 38660a254db42162ea13be6d87fef4043e980c71 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Mon, 13 Jan 2025 07:19:03 -0300 Subject: [PATCH] fix: method name Need to be get and not set Signed-off-by: Vitor Mattos --- lib/Service/SessionService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/SessionService.php b/lib/Service/SessionService.php index c8f58bf42..a37bbd866 100644 --- a/lib/Service/SessionService.php +++ b/lib/Service/SessionService.php @@ -56,7 +56,7 @@ public function getIdentifyMethodId(): ?int { } public function resetDurationOfSignPage(): void { - $renewalInterval = $this->appConfig->setValueInt(Application::APP_ID, 'renewal_interval', self::NO_RENEWAL_INTERVAL); + $renewalInterval = $this->appConfig->getValueInt(Application::APP_ID, 'renewal_interval', self::NO_RENEWAL_INTERVAL); if ($renewalInterval <= self::NO_RENEWAL_INTERVAL) { return; }