Skip to content

Commit cce0dda

Browse files
Plugin: Fix undefined user_id and id in meeting data on logout - refs #6153
1 parent abab5d3 commit cce0dda

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

src/CoreBundle/Repository/ConferenceMeetingRepository.php

+5-9
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,15 @@ public function findByMeetingRemoteId(string $remoteId): array
3535
*/
3636
public function findOneByRemoteIdAndAccessUrl(string $remoteId, int $accessUrlId): ?array
3737
{
38-
$qb = $this->createQueryBuilder('m');
39-
40-
$qb
41-
->select('m', 'IDENTITY(m.user) AS user_id')
38+
return $this->createQueryBuilder('m')
39+
->select('m.id', 'IDENTITY(m.user) AS user_id', 'm.remoteId', 'm.status', 'm.videoUrl')
4240
->where('m.remoteId = :remoteId')
4341
->andWhere('m.accessUrl = :accessUrlId')
4442
->setParameter('remoteId', $remoteId)
4543
->setParameter('accessUrlId', $accessUrlId)
46-
->setMaxResults(1);
47-
48-
$result = $qb->getQuery()->getArrayResult();
49-
50-
return $result[0] ?? null;
44+
->setMaxResults(1)
45+
->getQuery()
46+
->getArrayResult()[0] ?? null;
5147
}
5248

5349
/**

0 commit comments

Comments
 (0)