From d1d02d3e62550dba25a2ae86c8b51bdb30bebe2b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 20 Nov 2024 22:44:17 +0100 Subject: [PATCH] fix(calls): Fix call notifications in archived conversations Signed-off-by: Joas Schilling --- lib/Service/ParticipantService.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Service/ParticipantService.php b/lib/Service/ParticipantService.php index c6741923a2e..99ed50a1955 100644 --- a/lib/Service/ParticipantService.php +++ b/lib/Service/ParticipantService.php @@ -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) {