We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b70fc4d commit 3e20fc9Copy full SHA for 3e20fc9
1 file changed
lib/Channel/SessionManager.php
@@ -29,7 +29,7 @@
29
use OCP\IDBConnection;
30
31
class SessionManager {
32
- const EXPIRED_SESSION_TIMEOUT = 30;
+ const EXPIRED_SESSION_TIMEOUT = 30;
33
private $connection;
34
private $timeFactory;
35
private $ipcFactory;
@@ -131,7 +131,7 @@ private function getExpiredSessions(): array {
131
$query = $this->connection->getQueryBuilder();
132
133
$cutoffTime = $this->timeFactory->getTime() -
134
- self::EXPIRED_SESSION_TIMEOUT;
+ self::EXPIRED_SESSION_TIMEOUT;
135
136
$query->select('session_id')
137
->from('documentserver_sess')
0 commit comments