diff --git a/lib/Channel/SessionManager.php b/lib/Channel/SessionManager.php index fa5eba0..fc2c5b3 100644 --- a/lib/Channel/SessionManager.php +++ b/lib/Channel/SessionManager.php @@ -29,7 +29,7 @@ use OCP\IDBConnection; class SessionManager { - const EXPIRED_SESSION_TIMEOUT = 30; + const EXPIRED_SESSION_TIMEOUT = 30; private $connection; private $timeFactory; private $ipcFactory; @@ -131,7 +131,7 @@ private function getExpiredSessions(): array { $query = $this->connection->getQueryBuilder(); $cutoffTime = $this->timeFactory->getTime() - - self::EXPIRED_SESSION_TIMEOUT; + self::EXPIRED_SESSION_TIMEOUT; $query->select('session_id') ->from('documentserver_sess')