Skip to content

Commit

Permalink
Merge pull request #226 from doc75/expired_session_warning
Browse files Browse the repository at this point in the history
[Fix #222] fixing error message related to EXPIRED_SESSION_TIMEOUT
  • Loading branch information
icewind1991 authored Jul 15, 2021
2 parents 48b051a + b833d5d commit b70fc4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Channel/SessionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private function getExpiredSessions(): array {
$query = $this->connection->getQueryBuilder();

$cutoffTime = $this->timeFactory->getTime() -
EXPIRED_SESSION_TIMEOUT;
self::EXPIRED_SESSION_TIMEOUT;

$query->select('session_id')
->from('documentserver_sess')
Expand Down

0 comments on commit b70fc4d

Please sign in to comment.