Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/documentserver_community.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Virlet <github@virlet.org>2021-07-14 09:59:17 +0300
committerGuillaume Virlet <github@virlet.org>2021-07-14 10:02:36 +0300
commitb833d5d7d95de4819aadae809e3dcdf592527cbb (patch)
treef569a44da4164fee352d1de85b55fafd58539218
parent48b051a54290ab7212ce147911f476892a236548 (diff)
[Fix #222] fixing error message related to EXPIRED_SESSION_TIMEOUT
Signed-off-by: Guillaume Virlet <github@virlet.org>
-rw-r--r--lib/Channel/SessionManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Channel/SessionManager.php b/lib/Channel/SessionManager.php
index 8da66a8..fa5eba0 100644
--- a/lib/Channel/SessionManager.php
+++ b/lib/Channel/SessionManager.php
@@ -131,7 +131,7 @@ class SessionManager {
$query = $this->connection->getQueryBuilder();
$cutoffTime = $this->timeFactory->getTime() -
- EXPIRED_SESSION_TIMEOUT;
+ self::EXPIRED_SESSION_TIMEOUT;
$query->select('session_id')
->from('documentserver_sess')