Skip to content

Commit

Permalink
Merge pull request #13831 from nextcloud/backport/13829/stable30
Browse files Browse the repository at this point in the history
[stable30] fix(calls): Fix call notifications in archived conversations
  • Loading branch information
nickvergessen authored Nov 20, 2024
2 parents d2582fa + d1d02d3 commit 4a62c0c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/Service/ParticipantService.php
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,6 @@ public function getParticipantUserIdsForCallNotifications(Room $room): array {
->where($query->expr()->eq('a.room_id', $query->createNamedParameter($room->getId(), IQueryBuilder::PARAM_INT)))
->andWhere($query->expr()->eq('a.actor_type', $query->createNamedParameter(Attendee::ACTOR_USERS)))
->andWhere($query->expr()->eq('a.notification_calls', $query->createNamedParameter(Participant::NOTIFY_CALLS_ON)))
->andWhere($query->expr()->eq('a.archived', $query->createNamedParameter(false, IQueryBuilder::PARAM_BOOL)))
->andWhere($query->expr()->isNull('s.in_call'));

if ($room->getLobbyState() !== Webinary::LOBBY_NONE) {
Expand Down

0 comments on commit 4a62c0c

Please sign in to comment.