From b8d72562bb46f522fa5e8b0c4586595f59ac47d1 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Sun, 12 Jan 2025 17:21:49 -0300 Subject: [PATCH] fix: integration test Signed-off-by: Vitor Mattos --- lib/Service/IdentifyMethod/AbstractIdentifyMethod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/IdentifyMethod/AbstractIdentifyMethod.php b/lib/Service/IdentifyMethod/AbstractIdentifyMethod.php index 7c50f3e21f..395367d8f0 100644 --- a/lib/Service/IdentifyMethod/AbstractIdentifyMethod.php +++ b/lib/Service/IdentifyMethod/AbstractIdentifyMethod.php @@ -217,7 +217,7 @@ protected function updateIdentifiedAt(): void { } protected function throwIfRenewalIntervalExpired(): void { - $renewalInterval = (int)$this->identifyService->getAppConfig()->setValueInt(Application::APP_ID, 'renewal_interval', SessionService::NO_RENEWAL_INTERVAL); + $renewalInterval = (int)$this->identifyService->getAppConfig()->getValueInt(Application::APP_ID, 'renewal_interval', SessionService::NO_RENEWAL_INTERVAL); if ($renewalInterval <= 0) { return; }